> I will try to narrate the actual scenario. I have a list of buttons on my
> home page. When a user clicks on one of the button, it loads a list (select
> > option). Any selection made on the list loads another div (again using
> ajax) and I use jquery to load the second div. This all works as expected in
> Firefox but as soon as I try to get it working on IE7, it fails. I tried
> debugging and found that the second $(document).ready (loaded with ajax
> load) never got fired.

Ritesh,

Read through this bug - perhaps this is what's causing your issue:

http://jquery.com/dev/bugs/bug/746/


To add a callback to the load method, simply do this:

$('#myElement').load(myUrl, function(serverResponseData) {
    // this is the callback
});

_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/

Reply via email to