May be IE don't understand your POST paranetres.... try to use this method
$(document).ready(function(){
                $("#place").change( function() {
                        $.post("types.php",{
                                local: '"' + $("#place").val() + '"'
                        }, function(data) {
                                $('#types').html(data);
                                $('#types').focus();
                        });
                });
        });
   Gk___




2009/10/19 zebamba <zeba...@gmail.com>:
>
> I have this function:
>
> <script language="javascript">
> $(document).ready(function()
> {
>   $("#place").change(function()
>    {
>      $.post("types.php",{
>          local:$('#place').val()
>          } ,function(data)
>        {
>         $('#types').html(data);
>                 $('#types').focus();
>            });
>    });
> });
> </script>
>
> I does work fine on firefox.. but as normal on IE does not load the
> result form types.php...
> .html(data) is not showing up.
>
> May anybody help me with?
>

Reply via email to