The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
36 views

Delay execution of addThis

I have a website that uses google maps plus my own javascript. I am using the addThis javascript for social buttons. The site isnt really usable until my javascript plus the google javascript loads ...
1
vote
3answers
81 views

window.onload in external script gets ignored in Javascript

index.html <html> <head> <script type="text/javascript" src="foo.js"></script> <script type="text/javascript"> window.onload = function() { console.log("hello from ...
0
votes
1answer
134 views

displaying a dynamic background image within a google maps infobox on infobox.open

I am trying to add a background image to a div that is within the content of a google maps infobox. I'm running into problems because the function that I'm using to change the ...
0
votes
2answers
36 views

Get image dimension after page load

I have a project that needs to get the logo's dimension and adjust its position accordingly. From what I understand, all the elements on the page should be ready for use right after $(document).ready ...
1
vote
3answers
42 views

what it means for my page if it needs ready() to work

When I run from firebug console the code below it works without any problem jQuery(document).ready( function() { jQuery('h2').click( function() { jQuery(this).next().next().hide(); }); ...
1
vote
1answer
94 views

DOMContentLoaded inside $(document).ready?

At the moment I try get familiar with a plugin. On the plugin-homepage, there are several examples on how to use it. In one example there is this code: function loaded() { iScroll = new ...
0
votes
1answer
69 views

Get body before domready?

<html> <head> <script>alert(document.body.className);</script> </head> <body> something </body> </html> I hope this code may return a classname of the ...
0
votes
2answers
100 views

Why is Javascript causing FOUC

I'm working on a site that has a lot of Javascript and jQuery--as far as I can tell most of it is triggered to load after the document is ready. However, when the page loads you get about a second of ...
0
votes
0answers
155 views

Backbone trigger window.load not working with requirejs

I having a problem when using backbone and requirejs. Basically in my App.coffee file, i'm setting a listener on the AppView 'EVENT_LOADED' event what is suppose to be triggered when when the dom is ...
1
vote
2answers
552 views

requirejs with jQuery .domready() is not fired correctly

When you load jquery 1.8.2 with requirejs 2.1.1 - $(document).ready() and $(window).load() events starts to behave really weird. Sometimes only one of them are fired sometimes both but in all cases ...
7
votes
7answers
203 views

How to let the javascript executed just when dom and css is ready but not image

I want execute some javascript just when the dom and css is ready, but I don't care about the image(I'm tend to lazyload the image) I know how to detect the dom ready status, but how to detect the ...
0
votes
1answer
81 views

DOMContentReady is not being fired in a Chrome extension

I have written the following code in manifest.json file: { "name":"SecondExtension", "version":"1.0", "manifest_version":2, "content_security_policy": "script-src ...
1
vote
1answer
561 views

Javascript loaded through ajax cannot call functions in later script blocks

I have 2 HTML files, 1.html and 2.html. 1 is the main page, which loads 2 by ajax and stuff its content into a div. In 1, there are 3 script blocks - A, B, and C. The $(document).ready() in block B ...
0
votes
0answers
138 views

Load timeout for module: domReady!_unnormalized2

How do you interpret this error? Uncaught Error: Load timeout for modules: domReady!_unnormalized2,domReady!_unnormalized3,domReady! I'm using requirejs 2.1.2 and domReady 2.0.1. It doesn't ...
5
votes
2answers
192 views

Why does jQuery fire the ready event asynchronously

In jQuery ready event logic: // Catch cases where $(document).ready() is called after the // browser event has already occurred. if ( document.readyState === "complete" ) { // Handle it ...
0
votes
0answers
140 views

Mootools with IE8 crash

hello i'm using mootools(mootools-core-1.4.5) on my website and it is working on all web browsers but not on IE8. JS is crashing in this line: k.fireEvent("domready");i.fireEvent("domready"); ...
2
votes
2answers
79 views

Do I need to wait `domReady` if I put all my scripts after `</body>`?

Jquery has a ready method: $(document).ready(function(){ // my code }) It will execute my code when dom is ready. I have a question, if I put all my scripts after </body>, e.g. ...
1
vote
2answers
540 views

DomReady with backbone.js

I am using backbone.js to create a single page app. I am new to backbone, so please forgive any wrong semantics. My Problem is when rendering the views. Initially, I have a javascript in my ...
0
votes
2answers
140 views

domready event and iframes

If I do... Ext.onReady(function(){alert('Ready');}) or... jQuery(document).ready(function(){alert('Ready');}) ...and if I have an iframe on the page I'm running this on, the functions don't ...
-1
votes
4answers
129 views

How to get .ready to be called each time an element is loaded in jQuery? [closed]

I'd like to have an event that fires every time a Dom element is initialized, like so: HTML <div id="container"> <div id="data">data!</div> </div> <div ...
10
votes
3answers
157 views

$.ready() before closing body

This is not a real coding question, more of a real-world statement. I have previously noted that DOMReady events are slow, very slow. So, I noticed while browsing the jQuery source that the jQuery ...
2
votes
3answers
500 views

what is DOM ready event?

For a project i need to fire a script as soon as the page content (whole HTML tag) has been received but it doesn't have to be rendered yet. I assume that just having a simple <script> tag ...
0
votes
1answer
1k views

angular.js: equivalent of domReady

Warning: Angular newbie ahead. I have this code in an angular.js page <div class="clearfix" ng-controller="Controller"> <h1>Active Ideas <button type="button" ...
0
votes
1answer
86 views

Why is the JQuery .ready function sometimes not waiting for DOM? [closed]

I'm using JQuery to setup some comboboxes and I've wrapped the .combobox calls in the .ready function to make sure my controls are available, but on every 10th or so time loading the page, the ...
2
votes
1answer
78 views

Separating JS to multiple files

There are multiple pages on my web-project working with exactly same JS functions. I was copying and pasting same functions to all pages' js files. But recently seperated common functions to another ...
-1
votes
1answer
138 views

Lavalamp not working in HTML [closed]

EDIT: MY NEW PROBLEM IS http://jsfiddle.net/Rochefort/QzXNv/ NOT WORKING LAVALAMP. // OLD // I have a menu structure. With the following: <div id="navigation"><!-- navigation --> ...
5
votes
2answers
610 views

What is the difference between DOMContentLoaded and DOMContentReady?

According to the MDN wiki, DOMContentLoaded will fire when "page's DOM is ready, [although] the referenced stylesheets, images, and subframes may not be done loading." What about DOMContentReady? Is ...
-1
votes
3answers
106 views

jquery function wrap vs dom ready [duplicate]

Possible Duplicate: What is the difference between these jQuery ready functions? $(function(){ // ... do stuff }); VS $(document).ready(function() { // ... do stuff }); I saw ...
2
votes
2answers
674 views

How can I populate a dropdown list in an infowindow (Google Maps API v3)?

I have two arrays: one for article names, and the other for url links to each article. I am trying to populate a dropdown list within an infowindow with the article names, linking to each article when ...
1
vote
1answer
151 views

How to wait for LESS JS to load the .less file?

My webpage includes a less file instead of css. This is parsed by the less js script. My site's js script fires on dom ready and based on different dom dimensions layouts the page. The problem is, ...
2
votes
2answers
333 views

document.write ignored before DOMContentLoaded while waiting for high-latency script to load

I've tried many different ways to phrase this question to google et al with no luck. Not even sure the title of this question captures the nuance of the issue. I'll try to explain then show the ...
26
votes
3answers
711 views

Why is jQuery.ready recommended when it’s so slow?

I have asked a similar question before but I never made my point exactly clear, or at least I think it’s such a relevant question that it’s worth to bring it up and see if anyone can give some ...
1
vote
3answers
579 views

How to know when an iframe is ready?

I have an iframe inside a web page, and I want to do something when it is ready. I tried 2 ways: In the parent page, I use this jQuery('#iframe').load(function() { //my code here }); this code ...
3
votes
3answers
3k views

How to use the domReady requireJS plugin correctly

Here is my main.js before using domReady: require.config({ paths : { loader : 'libs/backbone/loader', jQuery : 'libs/jquery/jquery-module', Underscore : ...
0
votes
2answers
156 views

Jquery Ajax element.ready possible?

I would like to catch some attributes in a content but this content is updated by Ajax. The issue is that my function trigger before the whole content is displayed, so I don't catch anything. I want ...
0
votes
1answer
80 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 ...
1
vote
1answer
1k 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
384 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 ...
1
vote
3answers
1k views

Clear all forms on page load

I want to clear all forms on page load. I tried to use this function on domready, but it doesn't help. I'm new to JavaScript. Is there anything wrong with this function? $(':input', form) ...
2
votes
3answers
178 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 ...
9
votes
5answers
4k 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 ...
-1
votes
1answer
679 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 ...
0
votes
1answer
379 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" ...
1
vote
3answers
1k 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.
1
vote
2answers
512 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). ...
2
votes
2answers
3k 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 ...
21
votes
1answer
2k 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 ...
3
votes
1answer
133 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 ...
0
votes
1answer
413 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([ { ...
1
vote
1answer
507 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 2