Tagged Questions

13
votes
1answer
310 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 ...
4
votes
3answers
117 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 ...
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
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
229 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
854 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
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
439 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
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
77 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
130 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
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
538 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
279 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?