Hi, I want to populate values for two textboxes based on selection of options in select dropdown. I have used this in many places of my code previously, but facing this problem for the first time. i'm putting breakpoint at the onchange function to see if
that is getting fired, but the function itself is not getting fired. :(
Please find my code below.
<select name="issued_by" id="issued_by" onchange="populateDD" style="height: 22px; width: 120px">
<option value='' selected='selected'>--Select--</option>
<option value='abc'>abc</option>
<option value='def'>def</option>
</select>
----------------------------javascript------------------------------
function populateDD()
{
alert("fired");
}
I had bigger code, to debug whether the method is getting fired, ...
Go to the complete details ...