Tagged Questions

13
votes
1answer
307 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 ...
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
858 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
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
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
76 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
0answers
234 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
537 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 ...
-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 ...