Re: [jQuery] JQuery IE7 and document.ready

2007-02-11 Thread Agrawal, Ritesh
/discuss/ ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ -- View this message in context: http://www.nabble.com/JQuery-IE7-and-document.ready-tf3207782.html#a8910213 Sent from the JQuery mailing list archive at Nabble.com

Re: [jQuery] JQuery IE7 and document.ready

2007-02-11 Thread Mike Alsup
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

[jQuery] JQuery IE7 and document.ready

2007-02-10 Thread Ritesh Agrawal
Hi, I am new to JQuery. I have tried few ajax features of jquery and they all work beautifully on firefox. But when I try them on IE7, they fail. The problem is with ajax and jquery. I load a div using ajax load function. The contents of the div also include some new jquery script to controller

Re: [jQuery] JQuery IE7 and document.ready

2007-02-10 Thread Matt Stith
$(document).ready wont work in pages loaded via AJAX, try something like this: script... document.ready(... $('button').click( $('#load_div').load(..some url.,function(response) { //..whatever you need to be done after the load }); });