Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

24
votes
9answers
401 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
601 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 ...
7
votes
7answers
2k views

Using DOMContentReady considered anti-pattern by Google

A Google Closure library team member asserts that waiting for DOMContentReady event is a bad practice. The short story is that we don't want to wait for DOMContentReady (or worse the load ...
6
votes
2answers
864 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
268 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
4answers
121 views

jsfiddle question

I can't get this extremely simple jsfiddle to work. Its just supposed to alert test when button is clicked. What am I missing here? http://jsfiddle.net/u9nG6/2/
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 ...
4
votes
5answers
4k views

jQuery mobile $(document).ready equivalent

in ajax navigation pages, the classic "document ready" form for performing initialization javascript simply doesn't fire. What's the right way to execute some code in an ajax loaded page? (I mean, ...
3
votes
2answers
116 views

Using document.ready vs window.load to load deferred content

I know the difference between document.ready and window.load events. Now in order to improve the performance of my website, I plan to defer loading of javascript. I've seen numerous examples of ...
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
264 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
115 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
97 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
301 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
64 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(){ ...
2
votes
3answers
564 views

Is checking for the readiness of the DOM overkill?

I'm developing a platform for developing desktop apps with web technologies. In the course of doing so I've been trying to get some document/on-ready functionality working with the browser I will be ...
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
87 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
242 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
2answers
76 views

when does css render?

I was thinking of using a css transition with a delay as sort of a small animated intro for a page the other day. Is css rendered immediately after its loaded (before the document if fully ...
1
vote
1answer
226 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
517 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
739 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
154 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
272 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
475 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
446 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
243 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
276 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 2