[jQuery] Re: jqModal problem in firefox not firing ready

2009-01-09 Thread Kid_Niki
I figured it out. The problem is that the nested page had the html, head, body tags in it. Once these were removed and the style block moved to the parent page, it works fine. Let me know if you have any questions. -- View this message in context: http://www.nabble.com/jqModal-problem-in-firef

[jQuery] Re: jqmodal nested ajax

2009-01-09 Thread Kid_Niki
Also, If you look at this threadI put up an example of my code... http://www.nabble.com/jqModal-problem-in-firefox-not-firing-ready-tp20352990s27240p20352990.html Kid_Niki wrote: > > This is exactly the problem I'm having. It works under IE, but not in > firefox. Firefox do

[jQuery] Re: jqmodal nested ajax

2009-01-09 Thread Kid_Niki
This is exactly the problem I'm having. It works under IE, but not in firefox. Firefox doesn't fire the nested .Ready event. So the nested modal doesn't work. Any help with this would be greatly appreciated.. Thank you. rayfidelity wrote: > > > Hi, > > Is it possible?? the plugin page doe

[jQuery] Re: jqModal problem in firefox not firing ready

2009-01-09 Thread Kid_Niki
Just to give some more detail...this is a nested jqModal, where the nested Modals are within the php script loaded by the first Modal. Is this possible? -- View this message in context: http://www.nabble.com/jqModal-problem-in-firefox-not-firing-ready-tp20352990s27240p21373931.html Sent from th

[jQuery] jqModal problem in firefox not firing ready

2009-01-08 Thread Kid_Niki
width()/2)) + "px") .fadeIn("fast"); }, function() { this.title = this.t; $("#previewmiddle").remove(); }); //end of a.preview hover function $("a.previewmiddle").mousemove(function(e) { $("#previewmiddle") .css("top",(e.pageY - xOffset - $("#previewmiddle").height()) + "px") .css("left",(e.pageX - yOffset - ($("#previewmiddle").width()/2)) + "px"); }); //end of a.preview mousemove function }; // starting the script on page load $().ready(function(){ imagePreview(); }); This all works fine in IE 7, but not in Firefox 3.0.3. No errors are thrown. Upon debugging, ready is never fired. Nor is any of the hover functions. Any ideas? Thanks in advance... Kid_Niki -- View this message in context: http://www.nabble.com/jqModal-problem-in-firefox-not-firing-ready-tp20352990s27240p20352990.html Sent from the jQuery General Discussion mailing list archive at Nabble.com.