I have some textboxes and dropdowns on my page. now I already have a
function which resets my fields. I can do it by

$("#myFieldId")[0].value = "";

OR

$("#myFieldId")[0].selectedIndex = 0;

Can I do it by some easy way..?

Reply via email to