Tagged Questions

25
votes
9answers
404 views

managing document.ready event(s) on a large-scale website

NOTE: I have now created a jQuery plugin which is my attempt of a solution to this issue. I am sure that it could be improved and i've probably overlooked lots of use cases, so if anyone wants to give ...
16
votes
1answer
607 views

What's the right way to do $(document).ready in jQuery Mobile?

Suppose I want to run some code once jQuery Mobile has finished rendering the UI. The mobileinit event doesn't work since it's raised before this happens. A quick Google search seems to indicate that ...
6
votes
2answers
866 views

Four variations of jQuery ready() — what's the difference?

I've seen four different ways to tell jQuery to execute a function when the document is ready. Are these all equivalent? $(document).ready(function () { alert('$(document).ready()'); }); ...
5
votes
3answers
269 views

What are the side effects (if any) of multiple $(document).ready() in an HTML page?

I am using a web application framework (Symfony 1.3.6), which follows the MVC pattern. The view layer is comprised of a template decorator. The template file may also include other templates - this ...
5
votes
1answer
6k views

jQuery: $(document).ready() too slow in IE

What would be the preferred way of hiding an element before the page is rendered? $(document).ready() works just fine for firefox, but sometimes (connection to the server seems to be a major issue in ...
5
votes
4answers
5k views

JQuery: Why Unobtrusive JavaScript / Document Ready function rather than OnClick event?

I've just started looking at JQuery. I don't have any AJAX in my web application at present. My existing JavaScript in my HTML looks like: <form ...> <p>Find what? <input ...
4
votes
6answers
135 views

JQuery document.ready() overhead

I'm working with an application that uses way more JQuery that I've dealt with before and I'm trying to understand what JQuery document.ready() does to a web application a little better. I'm hoping ...
3
votes
2answers
1k views

Execute document.ready after ajax post

I have a custom.js file in which I have several elements that have click and other methods bound to them. The entire file is encapsulated in document.ready() and everything works. However when I do an ...
3
votes
4answers
265 views

What happens if more than one user control registers $(document).ready function?

I have a couple of user controls in an aspx page. And each user control may need to register a start-up block as an $(document).ready() function event handler. Do they override each previous ...
3
votes
4answers
136 views

Using jQuerys document.Ready function to attach events to elements

Normal style <a href="#" id="myLink" onclick="myFunc();">click me</a> function myFunc() { alert('hello!'); } jQuery style <a href="#" id="myLink">click me</a> ...
3
votes
6answers
2k views

jQuery: document ready fires too early for my requirements

I am developing a site based all around photos. Some areas of this site require calculations based on image dimensions in order to work correctly. What i have found is that document ready is firing ...
2
votes
1answer
119 views

fadeIn using $(document).ready( ) Causing a Noticeable Lag

I'm relatively new to javascript and am building a web page. I'm using the Pikachoose slideshow as a banner on the page and I couldn't find a way to get it to fade in on load. When the page loads, the ...
2
votes
3answers
98 views

Image does not have width at document.ready

I have a function that I wish to use to resize images: http://jsfiddle.net/eUurB/ When I run it on document.ready, it has no effect; the image size returned is '0' (You may notice that it does work ...
2
votes
2answers
151 views

Calling jQuery document.ready handler with apply method?

Below is the code I am using in a project with some complex dependencies. After I have made sure that all the dependencies have been loaded I fire the onReadyCallback() also given below. I have two ...
2
votes
3answers
170 views

How can I fire something after $(document).ready() completes?

Is there a way to have your function be called as the LAST in the $(document).ready() queue or, is there a way to trigger an event once this has completed? I want to essentially see if something was ...
2
votes
4answers
303 views

jQuery document ready function

Are the end results of the following jQuery snippets identical? Snippet 1: $(function() { alert('test!'); }); Snippet 2: $(document).ready(function() { alert('test!'); }); In other words, is ...
2
votes
2answers
165 views

Why is my jQuery not running?

I'm sure I'm just having a brain fart and I'm missing something obvious, but please help. I can't figure out why the following code (the early coding of a custom slide show) is not ruining when the ...
2
votes
2answers
5k views

JQuery $(document).ready ajax load

I looked at quite a few of the related questions and I must be asking this completely different as I saw only a few that seemed to relate. I am loading an entire middle div via JQuery Ajax call and I ...
2
votes
3answers
65 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
29 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
1answer
42 views

jQuery appendTo() not firing in IE7

I'm moving some stuff around on document ready. Think of it like a fancy tab navigation, where I have some dynamic content in a list navigation, that toggles between the different panels. I do have ...
1
vote
2answers
36 views

Wiring document.ready event: IE behaving differently

I am used to typing: $(function(){}); syntax to wire events and do other stuff in document readyevent. But I noticed that IE8 was giving problems with calling functions from some included js files. I ...
1
vote
3answers
48 views

Clear all forms on page load

What i wanna do is, to clear all forms on page load. For this purpose I tried to use this function on domready. But it doesn't help. I'm new to js. Is there any wrong in this function? $(':input', ...
1
vote
1answer
60 views

Bind document.ready to a popout window

Due to the manner in which jQuery binds the document.ready event, code that should be simple isn't: var w = window.open(someSameOriginLocation,''); $(w).ready(function () { //alternatively selector ...
1
vote
3answers
54 views

Need some explanation about jQuery DOMready

I'm newbie to jQuery. (Came to javascript from php.) I grouped multiple jQ functions in seperate files. Got following questions: is there any requirement that every jQ function must be inside ...
1
vote
2answers
53 views

Do I need to use $(document).ready() when using $(document.createElement())?

I want to create a set of elements to add to a HTML document using JQuery's $(document.createElement()). I know $(document).ready() is required before starting using document elements. However, is it ...
1
vote
1answer
89 views

jQuery Document Ready - Is it best to wrap each statement or just wrap all statements in one document.ready event?

I have seen it both ways, but which is better or does it not matter. I feel as though wrapping each statement might be cleaner, but just wondering if its more callbacks if you have 50 statements each ...
1
vote
6answers
70 views

jQuery document ready functions

what are the differences (if any) for the following jQuery document ready functions: $("document").ready(function() {}); and $(function() {});
1
vote
4answers
243 views

jquery - function inside $(document).ready function

Is it correct to create functions inside of $(document).ready(function() { like so : $(document).ready(function() { function callMe() { } }); The function inside of the .ready() ...
1
vote
1answer
228 views

When document.ready doesn't mean document.ready

I'm doing several things with the functions below in jQuery Tabs UI - changing images according to a data attr, pulling a random quote and collapsing some divs - all on a tab change in jQuery UI Tabs. ...
1
vote
2answers
520 views

Another questionable jQuery Quiz answer at W3Schools

There is a jQuery quiz posted on the W3Schools site here... http://www.w3schools.com/quiztest/quiztest.asp?qtest=jQuery Question #16 is as follows, Which jQuery function is used to prevent code ...
1
vote
5answers
1k views

Test if jquery is loaded not using the document ready event

On my site I have a jquery function which retrieves data from another (secured) server as soon as the page is loaded. Using a jsonp call I currently load this data after document ready event: ...
1
vote
1answer
742 views

document.readyState in Firefox 3.5.x

I've a site where I've putten this code to avoid errors: $(function() { var fnDocumentReady = function() { if(document.readyState != "complete") { setTimeout(function () { ...
1
vote
3answers
55 views

Is it a problem if I place jQuery that will be used once certain HTML is injected into the DOM into the $('document').ready()?

I have a jQuery function that when a certain button is clicked it removes certain html. This HTML does not exist in the DOM until another button is clicked. The button that when clicked removes the ...
1
vote
3answers
4k views

jQuery - Object Expected on IE and $(document).ready(function() {});

I have a page ([LINK REMOVED]) that works completely well in FireFox and Chrome, but for some reason I am getting an "Object Expected" error in most, if not all versions of IE. The error occurs on ...
1
vote
2answers
155 views

jquery ready function not executing

I have some javascript placed inside of the jquery $(document).ready function. It searches for an anchor in the url, and then runs a separate function to display matching content. The code executes ...
1
vote
2answers
273 views

Running a function just before $(document).ready() triggers

I've attached multiple functions in multiple files to $(document).ready and would like to attach a single function to happen before them as either the first that $(document).ready handles or to ...
1
vote
1answer
1k views

Under what circumstances is $(document).ready triggered on a back-button click?

I'm working with some code that uses JQuery's $(document).ready functionality to set up a jqGrid instance. It appears that the code is fired even when returning to the page via a back-button click. ...
1
vote
3answers
478 views

Shortcuts for jQuery's ready() method

I have seen some shortcuts for the ready() method and would like to know which actually happens first, because my test results confuse me.. $(document).ready(function(){ alert("document ready"); ...
1
vote
1answer
449 views

jquery: unbind a loaded function

I have a function which will resize the image background when the page is loaded, $(document).ready(function(){ loadBackground(); }); and I want to 'unload' or 'remove' this loaded function when I ...
1
vote
1answer
244 views

Verify that all images are loaded in `$(window).load()` function before proceeding

I am adding a number of large images for a slide-show to a page, but I want to start loading these images only when the normal part of the page is completely loaded (including the images). To do ...
1
vote
3answers
279 views

My jQuery ready function is firing too early… It's not ready!

I'm adding resizable to several div tags that are part of a complex page. But the $(document).ready() if executing too early. Not everything has been parsed and the resizable fails. How do I get ...
1
vote
1answer
133 views

$(doucment).ready(function(){}); and $(window).load(function() {}); confusion

My test product page over at http://www.marioplanet.com/product.htm has some odd behaviors which I could really use some help working out. Now, I had a problem previously with my image resizing, and ...
1
vote
1answer
200 views

JQUERY iFrame, Works with an Alert, doesn't work without an Alert - Strange? Why

The following does not work on my page: $("#bob").ready(function () { $("#bob").contents().find(".findme").css("background", "red"); ...
1
vote
2answers
156 views

When to use dom:loaded / document.ready events

When I use methods that "append" data to existing elements using prototype/jquery, is it a good practice to wrap such logic inside document.observe("dom:loaded", foo)/$(document).ready(foo) functions? ...
1
vote
3answers
104 views

jquery ready function: script not detecting a function

There is a web page with place holder (a normal div). Via ajax calls I am loading a <form> and a <script> into the place holder. The script contains necessary javascript to initialize the ...
1
vote
5answers
495 views

jQuery, Hiding elements on ready is always jumping on page load. how can this be avoided?

This is the code. I can't apply display:none; $(document).ready(function() { $("#LeftNav li.navCatHead").not(":first").siblings("li").hide().end().end().first().addClass("open"); });
1
vote
1answer
1k views

jQuery(document).ready doesn't run under IIS7

To simplify this test case, I created a new default .NET MVC project in Visual Studio 2010, and added the following code to the HTML header in Site.Master: <script type="text/javascript" ...
1
vote
1answer
486 views

Google AJAX Libraries CDN for jQuery

I have a page where I need SWFObject, jQuery and Google Maps API. I thought that I could use the benefits of using: <script type="text/javascript" ...
1
vote
1answer
2k views

Flash AS3 ExternalInterface call to function inside jQuery document ready

From a button in Flash I just want to call a function written in jQuery.When I place the function outside jQuery's $(document).ready it works fine: *btw I use SWFObject to embed Flash. AS3: import ...

1 2