When I populate my drop down menu in IE, it doesn’t re-center. This is what it should look like (which it does in chrome):
However, this is what it is doing:
There must be an easy way to reset the menu back to center and resize the box?
This is the function that populates the menu:
function PopResources()
{
$('#resources').html("<option>loading..</option>");
$.get("resources.php",
{"param":"getresources"},
function(returned_data)
{
//alert(returned_data);
$('#resources').html(returned_data);
});
}


I don’t know your particular case (without html and css), but sometimes these type of display issues can be resolved by turning off and then turning back on the
displayof the element at the end of the script (this usually works in the case of refresh issues as the browser is “forced” to recalculate the element).For jquery something like this at the end of the script: