onload

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 that window.onload has a problem with collections. Here's the code: <html> <script type="text/javascript"> window.onload = getSpanElements(); function ge...

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 striping is easy on a static page, but I can't figure out how to zebra stripe the new content loaded into the container div. Here's the code with which I'm trying ...

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 persisted object, I would like to initialize date's timezone class Schedule { Calendar date TimeZone tz; } I cant do this in the constructor becaus...

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. However, it does not work for some Ajax sites, www.bing.com for instance - window.onload is called before the pages is fully rendered. Any suggestions? ...

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 bug triggered when the user has reached the "order accepted" page, and pressed the back button. The "Processing Order..." animation is still displayed. (1) The...

ASP.NET - Between LoadViewState() and OnLoad() Is a Problem

Hi, I have a user control in an UpdatePanel. The user control has CheckBoxList, and can be dynamically created or deleted by UI action. In most cases it works fine. The problem occurs when: The parent page is loaded with one such user control pre-populated, say, with checkbox 'A' checked and checkbox 'B' unchecked. The user control i...

Can someone make this ActionScript to work?

I've made an empty AS 3 .flv document that has one keyframe on position 1 with this action: on(load) { var req:LoadVars = new LoadVars(); req.x = "y"; req.load("http://localhost/file.php"); req.onData = function(src:String) { req.x = src; req.send("http://localhost/send.php", "_self", "POST"); ...

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

Hi, 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 body or head tag (It's like they are generated elsewhere). Thanks ...

Writing to the DOM on body onload not working in Google Chrome

Hello. In Google Chrome, the following code snippet: <html xmlns = "http://www.w3.org/1999/xhtml"&gt; <head> <title>Example</title> <script type = "text/javascript"> <!-- function onBodyLoad() { var x = 42; document.writeln("x = " + x); alert("on load"); } --> <...

window.onload/onunload and <body onload/onunload >

I have read the thread window.onload vs <body onload=""/>. In that thread, many claim that window.onload and body onload="" are identical. This is not what I experience. Consider the two test pages: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; <html xmlns="...

How to track the user in an iframe

I want to track what happens inside an iframe when a user clicks on links in the IFrame. The page that contains the iframe (the parent) is to track the user´s navigation through the page in the iframe. Both pages will be hosted on the same toplevel domain, although the subdomains will differ. I need the parent page to be notified of eve...

Capturing onload event when dynamically loading .js files ?

Is there a capture the on load event when dynamically adding a script tag with JavaScript in IE? The code below works in FireFox and Chrome but not in IE. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; <html xmlns="http://www.w3.org/1999/xhtml" > <head r...

Setting the value of a dropdown list when a page loads

Hi and thanks for your help, I am trying to set the value of a dropdown box when my page loads. Right now it gives me no errors, but the dang dropdown box isn't set to the value I wanted. Here is my code: <body onLoad="IssuesToReportForm.ReportTo.SelectedValue = '<%=strReportTo%>'"> Is this part of the code my problem? Thanks, Will...

body onload doesn't work in Javascript

hi, i had written one JS in asp.net. I had called that from body onload, but the JS doesn't get called where i have put my debugger. What could be possible reasons for this? I'm developing website in dotnetnuke. The JS i have written is syntactically and logically correct. Thanks <script type="text/javascript"> var displayTime, speed...

How to animate mouse cursor with custom image when loading page?

Hi! I'm trying to change cursor mouse on my website with custom images. Here is my actual CSS: <style type="text/css"> <!-- body { cursor:url(images/default.cur),auto; } a:hover { cursor: url(images/hover.cur),auto; } a:active { cursor: url(images/wait.ani),auto; } --> </style> Firefox 3.5.6 does change the default cursor with my ....

How to prevent GWT onload flicker in the Web Application Starter Project?

I'm new to GWT, and I'm sure this is answered in SO somewhere but I've yet to find I downloaded the GWT 2.0 eclipse plugin, and was pleased to see it comes with a starter project. However, I was surprised that when running it, there is an unpleasent flickering... The text loads without the CSS first It takes a while untill the select...

Rails: Ajax: Changes Onload

Hi. I have a web layout of a for that looks something like this <html> <head> </head> <body> <div id="posts"> <div id="post1" class="post" > <!--stuff 1--> </div> <div id="post2" class="post" > <!--stuff 1--> </div> <!-- 96 more posts --> <div id="post99" class="post" ...

how to disable the toolbar during the onload??

i disabled the toolbar during the onload but it s going as an infinite loop....i dont want this to happen..... i dont want to use another jsp page. can someone help me out.... ...

Javascript Execute After Page Render IE6

I am having trouble with some JavaScript running before the page is completely rendered in IE 6 (maybe other versions too but just testing IE6 for now. Firefox seems to be OK). I can get around this by calling the js on window.onload like this: window.onload = function(){doIt();} However, my concern is the fact that I will overwrite...

Javascript/jQuery: does anybody already created a loading fixed div on top 100%:100% of the page with jquery?

Hi all, i used sometimes a 'loading' method with the javascript onload & onunloadbody events.(www.restaurantebarocortico.com) Now i'm learning jQuery, and i used the $(document).ready & $(window).unload to replace the old events, but the unload event isn't working correctly. Does anybody knows another method to call a function on unloa...