Tagged Questions
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";
...
2
votes
3answers
349 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 ...
2
votes
4answers
2k views
window.onload seems to trigger before the DOM is loaded (JavaScript)
I am having trouble with the window.onload and document.onload events. Everything I read tells me these will not trigger until the DOM is fully loaded with all its resources, it seems like this isn't ...
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
93 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
1answer
208 views
Page On load event in JSF
I am trying to assign values to my dropdown during page load. I followed the way which is given in this link.
JSF action on page load
As per the link, i have tried using both the annotation and ...
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
659 views
image onload event triggering before its image fully loaded?
I am using Jcrop jquery plugin, and triggering the initJcropBox() function on onload event.
but this function is being triggered before the image is fully loaded. which is causing problem. such as ...
0
votes
1answer
368 views
Main form's OnLoad override never gets called
The following problem has me stumped: I have a WinForms application which used to work just fine. On Windows7 however, my MainForm's "Load"-event handler is never invoked. I tried Googleing a bit and ...
0
votes
1answer
369 views
Attaching event handler to an event OnInit or OnLoad
Hi
Found this question on an interview site
Given the following methods of the ASP .Net Page class, in which of them would you attach an event handler to an event published by a control on the web ...
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 ...