Tagged Questions

0
votes
1answer
26 views

jquery hiding works in .live and fails in .ready

Both of the below functions (which are identical except for when they should run) are in $(document).ready. The .live version works as expected, hiding 2 divs when the selector is checked and showing …
1
vote
6answers
105 views

jQuery ready event not fired on partial page load

Here's the situ: A page which contains html and using the jQuery libray and tabs jQuery UI plugin loads another page when some tab is clicked. The problem is that when the page/html is …
0
votes
2answers
74 views

javascript Document ready firefox (jQuery)

In FireFox I have this jQuery at the end of the body: $(document).ready(function() { $.getScript('LiveMapsJavascriptProvider.aspx?type=reference&value=6', init); }); There are a lot of js …
1
vote
3answers
89 views

jQuery difference between live() and ready()?

What is the exact difference between live() and ready()? Edit: found that die() is the opposite of live()
0
votes
2answers
36 views

ready event on a posted form

I have a form in an iframe, when this form is posted a file is returned to the user (based on the form information). This file is returned using content-disposition:attachment so that only a file save …
0
votes
2answers
93 views

MooTools: domready vs load

With which will function(){} fire first? A) window.addEvent('domready', function(){}); B) window.addEvent('load', function(){});
2
votes
2answers
87 views

$(document).ready() timeout for images

When using jQuery you wait for the DOM to be ready before you start doing stuff. My problem is with images. Sometimes images take ages to load, and quite frequently not at all. So I want ready() to …