Tagged Questions

9
votes
4answers
5k views

Hook a javascript event to page load

I have an aspx that has the following javascript function being ran during the onload event of the body. <body onload="startClock();"> However, I'm setting the aspx up to use a master page, ...
6
votes
3answers
2k views

iframe behaviour of onload vs addEventListener('load')

I've been playing around with adding hidden iframe elements to a page, and I want to manipulate the DOM of the these once loaded. I've noticed that I can't start manipulating the DOM immediately after ...
5
votes
2answers
294 views

element.onload vs element.addEventListener(“load”,callbak,false)

Can someone please explain what the difference is between the following two ways to specifying onload callback functions in javascript? element.onload = callback AND ...
3
votes
4answers
468 views

Cross Browser Dom Ready

I inherited this piece of code and it seems suboptimal and possibly incorrect since it's adding event listeners on both the window and document objects. However, it is working properly except for ...
3
votes
4answers
865 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"; ...
2
votes
2answers
68 views

javascript: <body onload=“”> and window.onload

I ran across a weird error today. I had a simple userscript which was adding a window.onload event to all the sites. But one of the sites had a <body onload="func();"> defined. What happened is ...
2
votes
3answers
393 views

Anyway to change href of link with no id and no jquery?

I'm working with a client and I'm only allowed to use javascript (don't ask why as I have no idea). They don't have jquery setup and they don't want it (once again I have no idea why) Anyways there ...
2
votes
5answers
235 views

How does the browser know if an image is loaded?

I need to have a function called after a larger image is loaded on the page. I've tried some various solutions that I've found on here and around the web, but none either fit or work. Here's what I've ...
1
vote
1answer
50 views

IFrame Undefined value on body onload

How can I get the value of my iframe using body onload, I get an undefined value. my non-working code: index.html <body onload ="loadThis()"> <iframe id = "myframe" src = ...
1
vote
1answer
58 views

Issues onload() canvas with opera

I make an application canvas. Every time I call draw () function, multiple images are drawn in canvas. The problem is that with Opera it does not work. Onload function does not always work. ...
1
vote
1answer
101 views

Exit function after events

I want to have my own initialization function, and I want it exit only after onload event, what can I do for it? var qqq=0; function init(){ var requestClient= Ti.Network.createHTTPClient(); ...
1
vote
1answer
375 views

Image loading: JavaScript onLoad and Image::complete (FireFox 3)

When loading images into a JavaScript Image object, I would presume that, once the load event is triggered for an image i, then i.complete should be true. Either that is not happening or (more likely, ...
1
vote
1answer
159 views

Onload event with iframe

I hope someone can help me - I'm at the point of giving up. I've got a page, if the page gets selected I want the pdf document to load in a frame. Originally the code had a button where if you ...
1
vote
3answers
2k views

Add event handler for body.onload by javascript within <body> part

We want to include a maps from Google Maps API in our document. The documentation tells to initialize the map with a function called by the onload() event of the body. The ordinary way to call: ...
1
vote
0answers
170 views

looking for a more comprehensive Javascript onload event

I am developing a script to avoid Flashes Of Un-styled Content by hiding the body element until its contents have fully loaded. This is designed as a plugin for pages rich in disparate and often ...
1
vote
3answers
131 views

Way to see which elements are still loading and are hindering window.onload from firing?

is there a way to see which elements of a website are still loading so that window.onload can't fire yet?
1
vote
0answers
435 views

javascript form submission usng window.onload on background window

I have a form which submits certain values to third party... I am using windows.onload(); to submit that form, but as soon as the page is loaded the focus goes to new window... Is there a way to ...
0
votes
1answer
24 views

Redirect happens before form data is processed

What i'm trying to do here is to sends an email to a salesperson notifying them that their client has viewed a google docs presentation. The query's Num=val is a serial number that I use to get the ...
0
votes
3answers
25 views

Correct piece of script to use to get layer to toggle open on windowload

i am looking for the correct piece of the following script to use as a window load function to get the layer to toggle open on load this is the code for expanding the layer $(function() { ...
0
votes
4answers
25 views

body onload and window.onload at the same time

Can I use body onload and window.onload at the same time? I've tried it using this code <body onload = "alertFirst()"> </body> <script> window.onload = alertSec; </script> ...
0
votes
6answers
80 views

Tell when multiple onLoad events have been completed in javascript

I have to load two apis. The YouTube api which calls onYouTubePlayerReady when it has loaded and another api for SoundManager which calls soundManager.onready(...) when it has loaded. I do a lot of ...
0
votes
0answers
53 views

Function to load related view in crm 4.0

Which js-function is called to load the iframe of a related view is it possible to change the called function, by replacing the onclick-event of the menuitem or is it even possible to do some tasks, ...
0
votes
0answers
70 views

why iframe can't be set onload in IE8

I try the following code to listen the iframe onload event in IE8 aliJob.init(data) aliJob.openIframe() alert(aliJob.ifr) if(aliJob.ifr.attachEvent){ ...
0
votes
2answers
128 views

onload event throws 'object expected' error

Whenever I use the event, i get a javascript error saying "Object expected" pointing to the line containing the onload event. Here is a simple representation of my webpage. <html> <head> ...
0
votes
0answers
69 views

IE + onload fires before checkboxes state are set

I have a page with a group of checkboxes. When a user ticks the checkboxes and navigates to another page and then comes back to the checkbox page via the browser back button I have a script that runs ...
0
votes
2answers
131 views

Why doesn't 'load' event handler bound to an <applet> get called?

I want a callback that is executed after an <applet> element is loaded: // Create element var $applet = $("<applet></applet>"); // Attach handler $applet.load(function() { ...
0
votes
2answers
384 views

submit infinite loop in window.onload

I have an issue that occasionally when a user opens the page it will seemingly flicker and resize itself. Look at the log it seems that the submit is being called multiple times, though i can't be ...
0
votes
1answer
418 views

Dynamic Script in IFrame not triggering window.onload

I am dynamically creating an IFrame then adding a script tag to it with code that should execute when the frame loads, however it is never executed. $stage.html("<iframe src='javascript:;' ...
0
votes
2answers
759 views

Inline event handlers and anonymous functions

I have a need to dynamically include and run a script in a page. I am using an image onload event for this: <img src="blank.gif" onload="DoIt" /> The DoIt function looks like this (just made ...
0
votes
1answer
222 views

window load event outside of HTML head

I am working with some legacy HTML/JS code, where I need to attach to the load event. The script I am working with is outside of the <head> tags. Is listening to the load event unreliable when ...
0
votes
1answer
510 views

Onload can fire early when using jsp dynamic includes?

When a jsp page includes jsp dynamic includes... <jsp:include page=”filename.jsp” /> ...is it possible that the document onload event (or prototype's dom:loaded event) could get fired too ...
0
votes
3answers
1k views

Insert javascript call inside <body onLoad=function()> in RAILS

I am n00b at rails. The question is very simple, i want to know how can i make a javascript function call inside body tag on the onLoad event. I'm asking this because in the views i can't find any ...
0
votes
3answers
993 views

Javascript: collect info from multiple function onload events until web page finishes loading

Okay, now I've got this thing I need to do with Javascript but I have no idea the best way of doing it! I'll explain by telling you how I "think" it should work... Inside the web page there will be ...
-1
votes
2answers
370 views

difference between calling javascript function on body load or directly from script

i am using a javascript where in i am creating multiple div (say 5) at runtime, using javascript function, all the divs contain some text, which is again set at runtime, now i want to disable all the ...