0
votes
2answers
41 views
Pressing the back button does not trigger <body>’s OnLoad
Hey all,
My checkout cart displays (1) an animation for "Processing Order..." after the 's been (2) submitted and the card is being processed in a php script. However, there's a b …
0
votes
4answers
86 views
window.onload equivalent for Ajax applications?
I'm using window.onload to call my JavaScript code that has to be executed after the page is fully loaded. From what I read this is the recommended method to call such scripts.
Ho …
1
vote
3answers
35 views
hibernate post initialization
I would like to initialize class members of a persisted object as soon as Hibernate loads the object from the database.
How can I do this ?
More specifically: In the following pe …
0
votes
3answers
46 views
addClass using .live() with jQuery
I am currently using the .load() function to load content into a container div dynamically. The content being loaded is table data which I'd like to zebra stripe. The zebra strip …
1
vote
6answers
106 views
window.onload != <body onload=””>
This is rather interesting, I think. Consider following code, both the window.onload and body onload="" call the same function. However, the results are different. It appears to me …
1
vote
4answers
2k views
jQuery/Javascript: How to tell if 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 p …
0
votes
1answer
125 views
How do I load and external swf AND gotoAndPlay() with ONE button
I've made an interactive tour. Which can be seen here:
http://www.92YTribeca.org/Tour
The main swf is the nav at the top. And I load 4 external swfs into the main (About, Rentals …
0
votes
2answers
171 views
How to trigger onload event when downloading a file in an iframe?
Suppose we have the following HTML file:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Test iframe download</title>
<script type="text/javas …
0
votes
1answer
88 views
Changing HTML content dynamically with JS before ActiveX component has finished loading
I have an HTML page, which performs the following actions (in order):
Shows static HTML content
Replaces some of the static content using JavaScript
Loads an ActiveX component us …
0
votes
3answers
125 views
How to execute code in an iframe as soon as the page starts to load (not onloaded!)
I want to execute javascript code inside of an iframe as soon as the rendering begins, not when the document is loaded. The purpose is that i want to modify javascript behavior ins …
0
votes
4answers
73 views
javascript button selecetd onload
Hi All,
an anyone tell how can i make a button on page onload.As i have a login page and i want to make the login button selected onload and when i press eneter the onclick of butt …
0
votes
3answers
84 views
How Do I addEventListener for Elements Coming from the Server?
Hi.
How do I add a click event using addEventListener (window.onload)
when the tags in question are being generated from
the server (via an xmphttp request, no less)?
Thanks!
0
votes
2answers
230 views
Silverlight 3 onload event binding multiple instances
I have two silverlight instances embedded in a page like follows (content simplfied to relevant details only):-
<object id="SL1" data="data:application/x-silverlight-2," type=" …
-1
votes
5answers
539 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 answere …
0
votes
2answers
165 views
Problem using onload javascript
Hi,
I have used Javascript onlaod like this:
function check()
{
var pic = new Image();
pic.src= "images/first.jpg";
pic.onload = function()
{
alert("Uploaded") …
