This is very interesting.
I'm having the same issues myself.

I've also tried .load() but that doesn't seem to evaluate the javascript at
all in any browser.

Here is my request:
                                <script type="text/javascript">
                                        $(document).ready(function(){
                                                
$("#ajaxloadimage").ajaxStart(function(){
                                                        
$("#ajaxloadimage").show();
                                                });
                                                $.ajax({
                                                        type: "POST",
                                                        url: "test.html",
                                                        data: "getCountries=1",
                                                        success: 
function(txt){$("#categories").append(txt);}
                                                });
                                                
$("#ajaxloadimage").ajaxStop(function(){
                                                        
$("#ajaxloadimage").hide();
                                                });
                                        });
                                </script>

Test.html looks like this.
                <script type="text/javascript">
                        $(document).ready(function(){
                                alert("Test");
                        });
                </script>

In FF the alert fires as expected.
In IE and Safari nothing happens.

Could somebody please explain what I'm doing wrong.
-- 
View this message in context: 
http://www.nabble.com/ajax-and-IE-tf3058302.html#a9471305
Sent from the JQuery mailing list archive at Nabble.com.


_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to