[jQuery] Call back function for Selectbox not working on IE..
<script language="javascript">
$(document).ready(function()
{
$("#place").change(function()
{
$.post("types.php",{
local:$('#place').val()
} ,function(data)
{
$('#types').html(data);
$('#types').focus();
});
});
});
</script>
.html(data) It does work fine on Firefox, on IE as usual and normal
not working..
The selectbox get empty and does not show the result from types.php
that writes the new options
May anybody help me with?