I am using country and state dropdowns in my form. Whenever the user selects the country in the dropdown, the respective states of the country will populate in the states dr
If you are parsing xml using jquery, and you need html() in IE, try this:
var content = ($.browser.msie) ? $(this).context.xml : $(this).html();
This solved my problem. I hope it will help someone too.
Greetings.