I am using ajax call for to bring the list for my drop down and assign it to html,works fine for mozilla nad crome but for IE it displays a blank dropdown
v
If you're using jQuery you can use append() like this:
append()
$get('yourTargetObjectId').append('this test to add');
this test to add
append() inserts content at the end of the selected element and use prepend() to insert at the beginning of the selected element.
prepend()