Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
7answers
50k views

Javascript - How to detect if document has loaded (IE 7/Firefox 3)

I want to call a function after a document loads, but the document may or may not have finished loading yet. If it did load, then I can just call the function. If it did NOT load, then I can attach ...
12
votes
1answer
12k views

iFrame src change event detection?

Assuming I have no control over the content in the iframe, is there any way that I can detect a src change in it via the parent page? Some sort of onload maybe? My last resort is to do a 1 second ...
11
votes
3answers
10k views

google.setOnLoadCallback with jQuery $(document).ready(), is it OK to mix?

I'm using Google Ajax API and they suggest I use google.setOnLoadCallback() to do various things related to their API but I'm using also jQuery's $(document).ready() to do other JS things, not related ...
9
votes
2answers
8k views

Why does chrome throw “Uncaught Error: NOT_FOUND_ERR: DOM Exception 8” here?

Below is the code for my YWA wrapper var astr_ywascript = (document.createElement("script").type = "text/javascript").src = "http://d.yimg.com/mi/eu/ywa.js"; ...
9
votes
5answers
893 views

Is there += for window.onload in Javascript?

recently I came up with the following problem: In my web site in all html pages I call a function in body onLoad event: <body onLoad="func1();"> This is part of my template for html, so it ...
9
votes
6answers
15k views

Attach a body onload event with JS

How do I attach a body onload event with JS in a cross browser way? As simple as this? document.body.onload = function(){ alert("LOADED!"); }
9
votes
2answers
12k views

Exactly when does an IFRAME onload event fire?

Does the IFRAME's onload event fire when the HTML has fully downloaded, or only when all dependent elements load as well? (css/js/img)
9
votes
2answers
5k views

Dojo addOnLoad, but is Dojo loaded?

I've encountered what seems like a chicken & egg problem, and have what I think is a logical solution. However, it occurred to me that others must have encountered something similar, so I figured ...
8
votes
3answers
877 views

How to use jQuery live() for img onload event?

I want to run some code when an image is loaded. Also, I'd like to do it unobtrusively (not inline). More specifically, I want to use jQuery's live() function so it will happen for any dynamically ...
8
votes
3answers
3k views

MVVM load data during or after ViewModel construction?

My generic question is as the title states, is it best to load data during ViewModel construction or afterward through some Loaded event handling? I'm guessing the answer is after construction via ...
8
votes
12answers
47k views

jQuery How do you get an image to fade in on load?

All I want to do is fade my logo in on the page loading. I am new today to jQuery and I can't managed to fadeIn on load please help. Sorry if this question has already been answered I have had a look ...
8
votes
5answers
26k views

How to tell whether the $(window).load()/window.onload event has already fired?

I have a script that is being inserted dynamically via another script. The code in that script is wrapped inside the $(window).load() event because it requires the images on the page to have all ...
7
votes
2answers
5k views

how to call a window's Loaded event in WPF MVVM?

It is easy enough to create a command from my OnLoaded() event handler code, but how do I call it from the View? <window Loaded="onLoaded"> doesn't cut the cake anymore since it calls code in ...
7
votes
4answers
13k views

Best practice for using window.onload

I develop Joomla websites/components/modules and plugins and every so often I require the ability to use JavaScript that triggers an event when the page is loaded. Most of the time this is done using ...
6
votes
1answer
78 views

window.onload function issue

I've noticed some bug in window.onload function. (Maybe it's my wrong) The problem is when I used following simple function, it worked on all browsers but Chrome. var name=$("#name"); window.onload ...
6
votes
3answers
164 views

A good cross-browser “ready” event without using jQuery?

I need to create the equivalent of jQuery's ready event without using jQuery. It needs to work on as many browsers as possible and cannot mess up the body.onload handler (i.e. if there's already a ...
6
votes
2answers
409 views

javascript image onError in case of non 200 response

I have to count image loading time. onLoadHandler is responsible for it. <img onError="onErrorHandler(this);" onLoad="onLoadHandler(this);" alt="" border='0' width='1' height='1' ...
5
votes
3answers
54 views

Do something if an image is not loaded (jquery)

I'm looking to fade in the background image when a visitor arrives at the site but not when they've already got that image in their cache. Something along the lines of this: Check if a background ...
5
votes
2answers
50 views

Does jquery or javascript execute when loaded dynamically on an event?

I have a dropdown and when i choose an option it will load an appropriate table from the server and display it using jQuery, along with the table i also send a tiny jQuery script like, ...
5
votes
2answers
61 views

no wrap (head) vs onLoad

In this demo, i got different outputs, if i use (no wrap) or (onLoad). My question is, in html file, to get a correct alert: 1,2,3,4 what alteration is needed in code ? With a simple load of dojo i ...
5
votes
2answers
115 views

Function is not Called

I have some javascript that is supposed to run after the window loads but for some reason, it never runs. Here's my code: function setClasses(){ ...
5
votes
3answers
2k views

difference bw onload() and $(document).ready(function(){..})?

can you list the difference between onload() and $(document).ready(function(){..}) functions in the using jquery?
5
votes
2answers
225 views

Is there a way to trap the completion of a sound file load event?

I would like to be able to trap a browser event that tells me when a WAV file resource has successfully finished loading into the browser cache. With such an event, I can put up some text on the page ...
5
votes
7answers
268 views

Why not use javascript handlers on the body element?

As an answer to the question of 'How do you automatically set the focus to a textbox when a web page loads?', Espo suggests using <body onLoad="document.getElementById('<id>').focus();"> ...
5
votes
4answers
4k views

Can you put the JavaScript onload event anywhere besides in the body tag?

I'm familiar with the typical use of onload, as in the following: <body onload="alert('Hello, World!');"> ... </body> Is there anywhere else in a page that onload is valid? I can ...
5
votes
1answer
7k views

jquery document ready in external script

My page has an outside script that contains some jQuery. Most of it runs fine except this bit: $(document).ready(function(){ alert('x'); }); That bit of code works fine when i run it ...
4
votes
3answers
133 views

Is 'onload' necessary when JavaScript is at the bottom?

I was wondering if, the window.onload = function(){} (or any other kind of onload, like the JQuery $(document).ready(); was necessary if the JS code was placed at the bottom? Or there could be highly ...
4
votes
2answers
107 views

how to know whether or not a image has been loaded using javascript

I'm coding a website that displays picture albums, the page is loading the thumbs and applies white overlays on each picture before they are fully loaded. I coded this in local and it works fine. But ...
4
votes
2answers
500 views

Jquery UI interface looks ugly before document.ready

HTML elements show earlier then onload or document.ready is fired. All jQuery UI widgets load on document.ready and it makes page look ugly for few first seconds. Possible option to deal with it - ...
4
votes
1answer
1k views

.onload called multiple times from Firefox extension

I'm developing a Firefox extension and have the following code: function initialize() { // For accessing browser window from sidebar code. var mainWindow = ...
4
votes
3answers
2k views

Form constructor vs Form_Load

Whats the difference between a form constructor and the form_Load method? Whats your though process for placing items in one vs the other?
4
votes
3answers
209 views

How to start a JS code when the whole page has loaded including images (real on complete)

I want to execute a script after the whole page has loaded, when it's complete. The current way is: window.onload=document.getElementById('loaded').value=1; Which is not good, as some images are ...
4
votes
3answers
2k views

Does body.onload wait for IFrames?

I know that onload event waits for page resources to load before firing - images, stylesheets, etc. But does this include IFrames inside the page? In other words, is it guaranteed that all the child ...
4
votes
3answers
2k views

showModelessDialog - onLoad failure - IE 7

MSIE v7 does not (in my hands) open a Modeless Dialog or trigger an onLoad event if there is a Javascript alert in the target page. The following fails in MSIE v7 but is OK in v6 (zip file of full ...
3
votes
3answers
43 views

Jquery .load() - How to execute Javascript in original document from loaded content

I have a document that loads some content into a div with JQuery's .load() function. That loaded content then tries to execute Javascript from the original document. This fails, possibly for obvious ...
3
votes
1answer
72 views

If page url = anchor in list, trigger mouseover + make bold

Headline says it all. What i am trying to achieve is to check onload urls in menu (multiple ul since it also has submenus) and if it equals, make it bold and trigger mouseover event: ...
3
votes
3answers
175 views

Can I call $(document).ready() to re-activate all on load event handlers?

Does anyone happen to know IF and HOW I could re-call all on-load event handlers? I'm referencing some .js files that I DON'T have control over, and these .js libraries do their initialization in ...
3
votes
2answers
172 views

How to detect “onload” for base-64 encoded webfonts?

How do I access the DOM to detect when my page's webfonts have loaded? I have 29 .ttf fonts base64-encoded into a single CSS file. I also have a hidden div on the page that uses each of the fonts, to ...
3
votes
2answers
141 views

Show lightbox to everyone besides search engines?

Is there any that that I can show a lightbox to all users on page load but dont show it to Google? Note that my skills are very basic HTML so any reply would be appreciated with details. Edit: I just ...
3
votes
5answers
558 views

How do you use $('document').ready(function()) in jQuery?

I have a piece of code that is working fine in IE, but it doesn’t run in Firefox. I think the problem is that I have not been able to implement $('document').ready(function). The structure of my json ...
3
votes
1answer
175 views

how to load a dynamically inserted img first

I am building a splash page for a website with jquery animations. My problem is: sometimes (before the page and images are cached by the browser) the images load in an order which detracts from the ...
3
votes
2answers
363 views

OnLoad and OnChange (jQuery)

function safe(){ if($(this).is(':checked')){ $("select[name='sort']").attr("disabled", "disabled"); $("input[name='group']").attr("disabled", "disabled") } else { ...
3
votes
1answer
223 views

How to add a script onLoad?

I have to add a Javascript onLoad on a tag : I have a form and I want to disable an input at load. How can I do this with symfony please ? I have to do this only for forms, so I can't add it in the ...
3
votes
3answers
298 views

javascript - document.write error?

Consider the script.. <html> <head> <script type="text/javascript"> document.write('TEST'); </script> </head> <body> Some body content ... ...
3
votes
3answers
341 views

onHashChange running onLoad… awkward

So I'd like my page to load content if a window's hash has changed. Using Mootools, this is pretty easy: $extend(Element.NativeEvents, { hashchange: 1 }); and then: ...
3
votes
2answers
654 views

Is it okay to call canvas.drawWindow() from the “onload” handler?

The note at the bottom of this Mozilla wiki page currently says: "Using canvas.drawWindow() while handling a document's onload event doesn't work. In Firefox 3.5 or later, you can do this in a ...
3
votes
3answers
411 views

Checking for multiple images loaded

I'm using the canvas feature of html5. I've got some images to draw on the canvas and I need to check that they have all loaded before I can use them. I have declared them inside an array, I need a ...
3
votes
4answers
701 views

Javascript detect event handlers available on HTML element

Is there a way to detect what event handlers are available natively for an HTML element? For example: isAvailable(img.onload) === true; // All browsers isAvailable(script.onload) === true; // ...
3
votes
4answers
792 views

JavaScript event window.onload not triggered

I've got the following code in a website: window.onload = resize; window.onresize = resize; function resize(){ heightWithoutHeader = (window.innerHeight - 85) + "px"; ...
3
votes
3answers
4k views

How to jQuery slidedown once page has already been loaded

I am having a timing issue when attempting to slide down my more info div. My desired functionality is that the div slidesdown from the top once the page has already been rendered. My problem is if ...

1 2 3 4 5 9