xxxxxxxxxx
if ($('[name=RDW]').val().trim() != "" && typeof ($('[name=RDW]').val().trim()) != 'undefined') {
html += "<tr><td>RDW (%)</td><td>" + $('[name=RDW]').val().trim() + "</td><td> (13-22)(15-27)</td></tr>";}
xxxxxxxxxx
// HTML markup
<div id="myDiv">Hello, World!</div>
// jQuery code
$(document).ready(function() {
// Select the element with ID "myDiv" using a specific selector name
var mySelector = "#myDiv";
// Perform actions on the selected element
$(mySelector).text("Hello, Stack Overflow!");
// Display the modified content of the selected element
console.log($(mySelector).text());
});