Tagged Questions

3
votes
4answers
791 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
3answers
347 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
233 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
31 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
92 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
0answers
165 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
129 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?
0
votes
0answers
66 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
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 ...