Tagged Questions
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 ...
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 ...
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 ...
3
votes
2answers
115 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
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 ...
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
150 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
169 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
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
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
738 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
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 ...
0
votes
2answers
120 views
alert message on document ready event in jquery
i am alerting a message on document ready event but it is not working. how to do this. my page code is
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
...
0
votes
5answers
51 views
error var is not defined -but its defined before used-
this code
$(document).ready(function(){
var wBack = $('ul li.roundabout-in-focus').height();
var hBack = $('ul ...
0
votes
4answers
61 views
non-jquery document ready - is window.onload the best/only way?
I want a function to run when the document is ready, but there's no logical reason to leverage jquery as the little amount of work going on the page doesn't warrant me loading a file of that size.
...
0
votes
1answer
204 views
How to load fancybox images into browser cache after document ready?
I have a list of ten anchored thumbnails and some facts, and when you click a thumbnail a full page chart pops up in a Fancybox window. There is a delay the first time you click any specific thumbnail ...
0
votes
6answers
75 views
Basic JQuery Question
I have the following JQuery code that processes a GET request upon page load:
$(document).ready(function() {
var refreshId = setInterval(function()
{
...
0
votes
2answers
115 views
Why does the global jQuery object get overwritten after the page loads?
I'm writing a jQuery extension contained in a self executing function:
(function($) {
// global variables for the purposes of this test
__$ = $;
__$support = $.support;
$.support.abc ...
0
votes
4answers
138 views
my own $(document).ready()
I have the following problem: I've got a website that can't have dependencies to javascript-files. I want to have the same function as $(document).ready() in jquery. How would that look like? Thanks.
0
votes
2answers
182 views
Problem Using a Hidden Input value as a parameter in a Javascript Document Ready function
I am integrating an AJAX uploader http://valums.com/ajax-upload/ into my application. By default the script dumps the uploaded file into one prescribed directory. I modified it such that it receives ...
0
votes
2answers
98 views
jquery selector issue
I have a div which in jquery's document ready I append - using $("#div id").append('html text') syntax - with 10 or so more div child elements.
once this is done I try to check the content of the ...
0
votes
1answer
594 views
How move a jquery script like “ddaccordion.init” in an external js?
Hi
im trying to put all my js in external js file, for the header for my site be more light.
So in my header i have this script, wich work well :
ddaccordion.init({
headerclass: ...
0
votes
2answers
58 views
Run functions on elements with a certain class as soon as the DOM is loaded, not using an event handler
I have a simple function which I want to run on all elements with a certain class. I want this function to be run as soon as the DOM is loaded; not upon an event handler.
Below is the code that will ...