The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
3answers
59 views

Is inline/block Javascript executed before document-ready?

Assuming one has inline Javascript code in a HTML document (the body for example), is this piece of Javascript always executed before JQuery document-ready code? For example, is the following safe? ...
1
vote
1answer
41 views

How does jquery element.ready() works?

this is my first post here, so be patient if I do something wrong; it can happen even if I carefully read the rules. I have used javascript for years, but never felt the need to use a library like ...
0
votes
1answer
31 views

Call plugin function multiple times on document ready?

I'w made jquery plugin that style desired elements to stylish windows. I need to call plug function on document ready so desired elements can be stylized and hidden, waiting for trigger to show them. ...
0
votes
1answer
183 views

javascript - opening hidden iframe for file download on document ready

I’m trying to use this trick to open a file download dialog on document ready. The same trick has worked another time for me, but that time the iframe was added after an ajax call. This is the ...
1
vote
1answer
33 views

Are cookies considered part of the DOM tree?

I am writing some Javascript and I know I have to document-ready anything that will modify the DOM tree. I also need to perform some work on cookies. Are these considered part of the DOM tree (meaning ...
1
vote
2answers
81 views

jQuery Function Not Working on document load

I've got a jQuery function that usually works on a Volusion page and for some reason now it's not working. The location.pathname.indexOf targets all pages that have that URL (the site uses GET ...
0
votes
1answer
136 views

How to fill the combobox from php with document ready function?

Here is the php code.In this code station name and ids and random passengers are produced. <?php include_once('RestUtils.php'); include_once('Passengers.php'); class Station implements ...
0
votes
0answers
32 views

Force Facebook login button to wait for document load before calling onlogin

So, I've got a Facebook login button integrated with my website. Any other Facebook API calls are made after everything's finished loading, but for some reason the onlogin call is made before the ...
0
votes
1answer
60 views

ready Handler Windows Store App with Javascript

I have a Navigation App and I want to cause the second page which is going to be loaded to the default.html to execute a function in ready section. I have written in the home.js the following code: ...
0
votes
1answer
22 views

Multiple Document Ready Calls - not working

According to this question here: JQuery - multiple $(document).ready ...? When there are multiple document ready calls each call will be ran in turn. However I've just followed an issue on my site ...
2
votes
1answer
122 views

Javascript like $(document).ready() for “modern HTML5” browsers

This is most likely already a question somewhere, but I cannot find it, as EVERY single search turns up jQuery questions. I'm looking for a proven method to bind to the document being ready, much ...
0
votes
2answers
49 views

Catching submit for generated form, so that users will see the processed result in a div

User clicks on a menu, and using the following code, the menu $.load()s it's linked content: $(function() { $('#menu a').click(function() { $('#content').load(this.href); ...
21
votes
3answers
1k views

Requirejs domReady plugin vs Jquery $(document).ready()?

I am using requirejs and need to initialize something on dom ready. Now, Requirejs provides : domReady plugin : http://requirejs.org/docs/api.html#pageload But, we already have jquery's ...
-1
votes
2answers
30 views

What am i doing wrong here - setTimeout on document load

Are working with an app and need to execute the function postCook after 10s but something is wrong. Just worked with Javascript / Jqurey for a couple of day's so still not flooowing :) But have now ...
9
votes
4answers
381 views

jQuery document ready buggyness with social sharing services

I have a strange issue that might have to do with jQuery document ready. Below is an html and script block that contains the usual social networking scripts. The Javascript block below displays the ...
0
votes
2answers
163 views

My jquery doc ready function doesn't recognize an external js file function?

I created several functions that were working properly when I had them on the same page as the HTML content, but because there started to be so many functions I decided to move them over to a .js ...
0
votes
2answers
87 views

Avoid .change() event to be fired at document.ready

I have an agencies DB. Each agency has (among others) 3 chained selects with dynamic/ajax options: - country - state - location When adding an agency: If user changes country select, its .change() ...
1
vote
3answers
242 views

calling an external script and .load jquery conflict

I'm pretty sure this is another DOH! facepalm questions but as designer and not a programmer I need some help getting it right. What I have is an index file calling local .html files via jQuery ...
0
votes
1answer
152 views

wrong width calculation using outerWidth() in google chrome [onload]

I have a navigation bar(topmenu) inside a div. I have to hide the rest of the menu elements if the width of the menu is greater than that of the outer div. Unfortunately I cant use overflow:hidden for ...
0
votes
0answers
9 views

Jquery multiple events optimize code

I create a very complex web form. Many sections disappear based on the user choices. The form also submit on itself when a section is complete and store data on a cookie. When user load or reload ...
0
votes
3answers
65 views

jquery document ready issue

i wanted to know difference between both. (function($){ //some console.log code }); $(document).ready(function() { //some console.log code }); You guys might call me stupid but i don't ...
1
vote
4answers
56 views

jQuery ready() issues - $(this) not usable and code applies only to one element

Im having issues with getting some jQuery to run when the DOM is ready. I have two forms, each with a <select> which when my code runs should load in other form elements. When the user first ...
1
vote
3answers
86 views

Moving the contents of a div to the bottom of code

On the website I am currently working on I have a div that loads slowly causing the page to load slowly but also jump as not all the positions elements load until after this slow div does. I cannot ...
0
votes
2answers
38 views

jQuery and Array type classes

I'm trying to access all inputs with the following class: validate['number'] Of course sometimes some of them are: validate['required', 'number'] So I need all that have number there. This is ...
1
vote
2answers
55 views

Issues with $(selector).load working randomly in Opera browser only

I want to fade in some images while hidden on page load with CSS (display: none;). This works fine on Firefox, Chrome, Safari, On Opera (last version: 12.12), the img are shown randomly... Here is ...
0
votes
1answer
35 views

Two $(document).ready Events, jQuery Library Included Between the Two, Only the Second One Executes

I have the following structure (simplified): // In <head> $(document).ready(function(){ // first event }); // Near the end of <body> // jQuery library is included at this point ...
0
votes
2answers
71 views

How to use jQuery.ready with other anonymous self executing functions?

The more I read about self-executing anonymous functions, the more confused I get :) My question is: if I use jQuery's document.ready function, do I have to place my entire app logic inside that ...
0
votes
2answers
180 views

Multiple jQuery functions working together

Is this the correct way to go about using multiple jQuery scripts? Some are in the same .js file, however, even with multiple .js files, it seems that the only way I can get them all to work at the ...
1
vote
5answers
120 views

Why does the location of $(document).ready() matter?

I thought that script within $(document).ready(...) would always execute after the DOM is loaded. Hence, it wouldn't matter if a $(document.ready(...) went in the head or in the body. However, the ...
1
vote
1answer
112 views

How i can execute a function of Jquery each time page is loaded?

My website is constantly loading content when you go to the bottom of this. And i have the next Jquery (is not important what it does) $(document).ready(function(){ $(".info").each(function(e) { ...
1
vote
2answers
66 views

javascript api simplified

Was using fourquare api to get venue, had previously had a clickable list written out from api but cut it down to just one venue name written to screen. Then decided it'd be best to just send it over ...
2
votes
1answer
46 views

why this document.ready fires not on time [duplicate]

Possible Duplicate: window.onload vs document.ready jquery i am having this problem: i have an image on the page which is not that big one. and i have a js function which sets the left ...
-1
votes
2answers
41 views

jQuery difference in dom ready call [duplicate]

Possible Duplicate: Differences between document.ready and $function I think it is a stupid question, but, Can someone show me the differences between these two call types? $(function(){ ...
2
votes
3answers
301 views

JQuery div.height is wrong in Chrome to make all the divs same height

I have used the following code to have equal height for rightpos, leftpos and middlepos divs: <script> jQuery.noConflict(); jQuery(document).ready(function($){ // Find the ...
1
vote
4answers
42 views

How do I use the JQuery ready event?

I just learned Jquery, My javascript is using the onload event within a function and not an anonimouse function: window.onload = xFunction; The problem is when i tryed to use the JQuery ready even, ...
1
vote
4answers
161 views

jQuery Organization of document.ready logic

Most jQuery enabled web applications I have worked on have organized document.ready logic in one of two ways. A global document.ready is is used in a site wide JS file, and all document.ready logic ...
0
votes
1answer
247 views

$(document).ready called twice in IE 9

This only happens in IE9, i didn't see this behavior in Firefox/Chrome. the problemetic website is: www.pocomaru.com If you open it, set a break point in $(document).ready, you will see it comes in ...
0
votes
1answer
93 views

javascript onload - can i add another onload on top of existing one [duplicate]

Possible Duplicate: Adding multiple onload handlers can i add another onload callback on existing onload? i have implemented bigpipe on the site and resources (javascript) gets loaded on ...
0
votes
0answers
22 views

onload not triggered when using cache manifest

I am using the cache.manifest file to cache the content. In my main.js I have a onload and documentready function to initialize a external scrollbar. But now it is not working anymore, because the ...
3
votes
1answer
192 views

Why does $(document).ready() never fire but $(window).load() will?

I'm working with Rails 3.2.8 and am running jQuery v1.8.2. The following works: $(window).load(function(){ alert('window load is working'); }); But this does not work: ...
1
vote
2answers
265 views

MVC Razor HTML helpers not rendered when $(document).ready(

I just noticed that my MVC Razor HTML helpers arent rendered (in DOM) when my javascript is calling $(document).ready(function.... So when I put code that is dependent on DOM objects in the document ...
0
votes
1answer
124 views

JQuery document ready - don't wait for ActiveX element

I have a page which contains ActiveX element. When it's loaded, a dialog is opened to confirm that user allows to install it and there are fancy progressbars on the page, they are initialized on ...
2
votes
1answer
233 views

Is “document ready” supposed to work like this on IE?

I'm making a small javascript framework, for a variety of reasons, including learning. Hence, I wanted to implement "document ready" functionality, and so I went to check how jQuery fakes ...
1
vote
3answers
238 views

How to get a computed CSS style before window.load?

I've got a custom slideshow page with hundreds of large pictures in markup. In addition, there is an adjustment to the layout that can't be done with CSS alone, and requires javascript. That ...
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 ...
1
vote
2answers
1k views

Alternative for “$(document).ready” function

I am using fancybox in an aspx page. The document ready function does not work in this page for a lightbox. Someone told me to write a new javascript code for loading the lightbox in that page.
0
votes
1answer
80 views

Load document ready before images

I am using the Smooth Div Scroll plugin and I have heavy images in it... in the top of my page I also have links, all my links have margin-right:15px; and I have a simple jQuery code that cancels the ...
0
votes
2answers
120 views

jquery navigation bar: submenus are not hidden on documentReady in jsfiddle

The following is my code: navigation bar This navigation bar works well on my computer - the submenus are hidden on document ready. However, on jsfiddle, i don't know on why the submenus are not ...
0
votes
1answer
104 views

jQuery: make changes AFTER jQuery hide() is completed

Here is the problem: jsFiddle What I want is the yellow height to be changed from 60px to 20px only AFTER it was slided down (it slides on click). How to fix? $(document).ready(function () { ...
1
vote
2answers
345 views

jquery on function and document ready

I use the jQuery on() function to attach an onclick function to a set of anchors in my website as follows: <ul> <li>First <a href='#' title='delete' ...

1 2 3 4