Tagged Questions
The domready tag has no wiki summary.
13
votes
1answer
305 views
How to know when font-face has been applied
I am currently building a corporate website for a customer that uses custom fonts extensively.
On jQuerys DOM-ready I am doing placement calculations to figure out where some pop-up menus with ...
13
votes
6answers
1k views
javascript:how to write $(document).ready like event without jquery
in jquery $(document).ready(function) or $(function) , how could I do the same thing without jquery, and I need browser compatiable, and allow to attach more than one function.
Note: dom ready!= ...
8
votes
5answers
3k views
Javascript DOM ready without an entire framework
Does anyone know of a good javascript DOM ready library that I can use without loading an entire framework? I found one on google code that seems to work, but the library was posted in 2008 and I ...
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 ...
7
votes
4answers
707 views
Is it ok to manipulate dom before ready state?
This is generally how I manage progressive enhancement whilst keep the experience clean, but how safe is it? is there potential for a race condition and this not working?
Imagine the simple abstract ...
4
votes
5answers
139 views
How to check if DOM is ready without a framework?
The question is so like a zillion others here and on the web - How to check if DOM has loaded in Javascript? But here's the catch:
Without using a framework like jQuery etc;
Without knowing if your ...
4
votes
3answers
116 views
What should be in and what should be out of a jQuery.ready()?
What should be in and what should be out of a jQuery.ready() ?
On a performance perspective, I've read somewhere that putting all the codes wrapped inside a jQuery.ready() isn't an efficient way to ...
4
votes
2answers
154 views
Can mouseenter be made to not fire in IE on DOMready?
jQuery emulates IE's mouseenter event on non-IE browsers. In IE, however, mouseenter is being triggered when the page loads (maybe due to jQuery's use of doScroll in the $.ready implementation), even ...
4
votes
3answers
2k views
jQuery multiple document ready queue order
I know calls to $(function(){ }) in jQuery are executed in the order that they are defined, but I'm wondering if you can control the order of the queue?
For example, is it possible to call "Hello ...
3
votes
1answer
62 views
javascript domready misunderstanding
I'm looking at jQuery source code for tracking the domready event and there's one thing i don't understand completely. What if the script is included dynamically and is loaded asynchroneously? That ...
3
votes
2answers
3k views
document.readyState analog for gecko-based browsers
IE has attribute readyState in document object, that indicates current state, e.g. "loading", "complete" etc.
Is there any way to find current loading state of document in Mozilla-based browsers?
I'm ...
3
votes
2answers
379 views
Has window.onload fired yet?
I have a script that will be inserted into an unknown page at an unknown time. Is it possible to tell from this script if window.onload has fired yet?
I have no control over the host page. I can't ...
2
votes
7answers
392 views
Understanding the document-ready event
Hey, I was just writing another basic script for my JS & jQuery practice, and I was just pumping out the goold ol' document-ready event when I realized what this was actually comprise of, and I ...
2
votes
2answers
857 views
Triggering domready by force in jQuery?
Since placing javascript DOM methods in the bottom of the html page (after <body>) is a lot faster than using the jQuery 'ready' event, shouldnt we be forcing it by doing:
...
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
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
148 views
jQuery - “wait until ready”?
I have this slider on my website:
http://css-tricks.com/examples/AnythingSlider/
It works fine, but I don't like the way it loads (you can see list of the images with list dots before it is ready).
...
1
vote
2answers
228 views
defining jquery ready event in Partial View
I have defined a $(document).ready() event in Site.Master page and I also want to define another $(document).ready() in one of my partial view (which is use to display msgs and error msgs), and I am ...
1
vote
1answer
261 views
Mootools domready called twice
I can't seem to work out why my domready function is being called twice.
window.addEvent('domready', function() {
alert('Ready!!111');
}
Its on a joomla 1.6 installation (mootools 1.3) with a ...
1
vote
1answer
853 views
Beginner question of yepnope & jquery & modernizr
I'm absolute beginner for yepnope and modernizr. I'm trying to test some example. So my question is: when jquery loads from a 3rd party CDN. It's working fine. But when jquery loads from a local, ...
1
vote
1answer
550 views
Migrating from YUI2 to YUI3 and domready
I want to migrate the javascript in my site from YU2 to YUI3, but I am only a poor amateur programer and I am stuck at the first pitfall.
I have the following code:
MyApp.Core = function() {
...
1
vote
2answers
160 views
jQuery without domready
Searching for a way to add this code, after the <head> (or some <link stylesheet>) and before <body> is generated (created).
$('body').append('<style type="text/css">\
// ...
1
vote
1answer
438 views
Measure width() with jQuery after DOM refresh
My script dynamically creates a <ul> width left-floating <li>s inside: it's a paginator. Afterwards, the script measures width of all <li>s and summs them up.
The problem is that ...
0
votes
1answer
17 views
Execute handlers when DOM ready as the inserted order
I want to to execute the handlers I pass to the "ready" function in the order there were inserted.
I saw with a jsFiddle that the order is opposite- LIFO - like a stack.
Is there a way to execute in ...
0
votes
1answer
26 views
How to trigger an event in Mootools for a specific tag/element with a specific element ID?
How to trigger an event in Mootools for a specific tag/element with a specific element ID?
I have this:
<a href="youtube-clip...etc" rel="rokbox" id="video_popup" style="display: ...
0
votes
1answer
56 views
Calling jquery colorbox from domready window.add event
I have the following code:
window.addEvent('domready', function(){var myBox = new BoxMenu({items: [['Card Info', 'item_1.png',function(){ window.location = "card"; }],]});});
This code creates a ...
0
votes
1answer
75 views
RadTreeView can't be found at in OnClientNodeClicked event handler
I'm using Telerik RadTreeView, and I've provided a JavaScript function for its OnClientNodeClicked property:
<telerik:RadTreeView
ID="pagesTree"
runat="server"
...
0
votes
2answers
129 views
jquery please explain difference between jQuery(document).ready and function init() [closed]
Possible Duplicate:
what is difference of $(function(){ }); and $(document).ready(function() { }) ;?
What is the difference between:
jQuery(document).ready(function($){
});
And
$( init ...
0
votes
3answers
223 views
DOM ready in GWT
Is there something like jquerys ready() in GWT. I add an iframe and will check when the DOM is ready.
0
votes
0answers
233 views
MooTools DOMReady not firing in IE7 if attached after DOM is ready through yepnope
I am using yepnope to load my scripts, but when using IE7, it won't fire the Mootools domready OR load events if they have already been fired. Any idea why?
Here is the code.
yepnope([
{
...
0
votes
2answers
106 views
TinyMCE initialization should be inside dom ready event?
They don't encapsulate initialization code in dom ready event In their official samples like this(click view source).
Is it safe to use it without dom ready event ? It controls dom ready event ...
0
votes
3answers
80 views
JS Window ready and script timings
Super easy one. Using something like Mootools or JQuery or just plain old JS. Can you select a node to work on before the window being ready
For instance (sry for my short hand)
<script>
my = ...
0
votes
3answers
105 views
Why a separately defined function does not work on a “domready” event in JavaScript?
I am quite new to JavaScript. I am trying to set equal heights to some elements. I managed to do everything except moving the function outside the "addEvent" declaration.
In other words, this code ...
0
votes
1answer
203 views
JQuery domready and window ready randomly working?
I've noticed lately that sometimes the domready and window.load does not work. It's like randomly working when entering the page, and or refreshing.
Say I have:
$(function(){
$('.hide').hide();
...
0
votes
2answers
125 views
jquery: help difference between domready and $(function…
hey guys,
i found a very intersting website template that has in it's header file the following lines:
(function($){
$(function(){
…normal jquery
}); // end of document ready
})(jQuery); // end ...
0
votes
2answers
536 views
Google API Loader setOnLoadCallback() - is DOM ready?
I am using SWFObject and for the alternative content (no Flash) I want to use a jQuery plugin.
Obviously I want to load jQuery and the plugin script only when Flash is not available. So Google's API ...
0
votes
3answers
278 views
jQuery's ready queue $(foo) and $(bar) will run in sequence or run in parallel?
If there are 2 or 3 or 20 statements using jQuery's
$(function() { ... })
to add functions to be executed when the DOM is ready, will all those functions run in parallel or run in sequence?
-1
votes
1answer
128 views
Google translate element - load after page ready
I am using the google web translate element on my page. For those that don't know what it is you can find it here: http://translate.google.com/translate_tools
It loads on the page using javascript. I ...