Tagged Questions

3
votes
3answers
2k 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()
2
votes
4answers
1k views

How to check if javascript function is ready/done (jQuery)

I am working on a learning planer, which gets its data (languagekeys, tasks, activities,..) from a database. As I need a json string I encode it with json_encode to work with it in javascript. I have ...
2
votes
3answers
67 views

Is there a NotReadyFunction in jQuery?

Is it possible to check if the document is not ready and execute a function periodically in jQuery? Simply I would like to achieve something like : $('document').isNotReady(function(){ ...
1
vote
4answers
44 views

element width is undefined on document ready

I am trying to obtain an element width using the following code just before the </body> <script type="text/javascript" charset="utf-8"> $(document).ready(function(){ var diff ...
1
vote
2answers
613 views

$(document).ready(function() {…}) runs before plugin script loads

I'm getting a JS error because my $(function () {...}) handler is being fired seemingly before the prerequisite plugin script is loaded. Only happens in IE (testing in IE7). I have some HTML in my ...
0
votes
5answers
104 views

How to check if page has FULLY loaded(scripts and all)?

I know, there are lots of answered questions about it here. My situation is a bit different, though, and I couldn't find an answer yet. I'm trying to show a message after the page has fully loaded. ...
0
votes
1answer
224 views

Can someone provides a vimeo simple api working example (using the standard embed object, not froogaloop)?

Vimeo docs are quite poor. I cannot get the simple api ready event fired. I studied the docs, but their not clear. I posted in forums, but answers are not clear. If I use a normal embed tag (in this ...
0
votes
2answers
112 views

Pause jQuery ready events until multiple HTML DOM updates are finished

I am using jQuery to make AJAX submits and receive JSON replies containing multiple DOM IDs and corresponding HTML fragments that I need to update. Thus, I do multiple jQuery.html calls like ...
0
votes
1answer
125 views

Executing JS before whole DOM is ready

Ok, I made 2 posts about this but somehow I can't get it into my little mind. So I concluded that if we have something like this: <script type="text/javascript" ...