'onload' is a JavaScript event that is run when a document is loaded.

learn more… | top users | synonyms

0
votes
1answer
24 views

Stopping an Function After It Has Fulfilled a Requirement

That is the best way I could describe it. Basically, I have a jpg that I have scrolling across the screen onLoad. I should be able to stop the image, and make it hidden after it has made 3 descending ...
0
votes
1answer
40 views

Using javascript to load a css hidden image as a background image on page loading

Noob at javascript and have searched without luck. Is it possible to use javascript to load an image which is already in the body of the html (css visibility hidden) to become visible as a background ...
0
votes
3answers
55 views

Body onload function does not work with three functions

So in our school project we are creating an image gallery on web. I want to have three blocks with images, where all three blocks rotates between three images (a total of 9). Like this [] [] [] where ...
0
votes
2answers
20 views

disable iframes automatic onload

i have one html with multiple pages in it. i have some pages that i open them in iframes. when i open the html page (it contains all pages in it) it starts loading all iframes and the page ...
0
votes
0answers
9 views

which event to capture to start my greasemonkey script?

I want to add functionality to mega.co.nz. When the site loads it's either waits your login or starts off with login from coockies on your disk. The changes in want to perform are available only on ...
0
votes
1answer
22 views

$.ajax “Get” based on page URL not working properly

I'm trying to load a file based on the URL of the page being loaded with a var without success. In this instance it is "http://www.cstv.com/gallerylink/00/12/02/120214.xml". It works fine if I use ...
0
votes
0answers
43 views

onload function not working with jQuery UI tabs

I am using jQuery UI tabs, and in one of the tabs I'm calling an html file <li><a href="evol.html">Evol</a></li> This html file has a onload function to go to the database ...
0
votes
2answers
62 views

How to monitor an image source for fully loaded status

I am loading a large number of images into a dynamic DIV and I am using a preloader to get the images. imageObj = new Image(); imageObj.src = imgpath + imgname; Each of these events creates a GET ...
0
votes
2answers
28 views

Javascript onload two functions not returning the data

I am trying to display two javascript function when page load. But seems one is overwriting another one. here is javascript code: function welcome(){ if (window.XMLHttpRequest) {// code ...
0
votes
1answer
41 views

What's the Best way to reuse jQuery?

Ok, there are so many approaches, however, I am only interested in 1, but which approach to use? Dunno... Basically, here's the dilemma. There will be subsequent calls to jQuery within the body of ...
0
votes
4answers
77 views

javaScript will not let me write to a textbox value

EDIT thanks to everyone! I have a cookie on a page and when the page loads I want to put the value from the cookie into a input box as its defualt value. However it will not work and I cant find the ...
-2
votes
3answers
41 views

JQuery check image exist

Hi i'm trying to display different image in different part of my site, but i need to display a default image if image doesn't exist. here is my code: the problem is to check the img width but is ...
0
votes
1answer
60 views

Javascript if statement in body onload

I'm just needing a little help. I'm wanting to display a success message on my index, but only if someone has come from the php page that sends the email. This is what I have <script> ...
0
votes
0answers
18 views

Multiple form submits in body tag

Although I have found a few questions related to this, none has quite addressed my specific situation. I have a PHP script that I want to call other scripts, without clicking. I have used this ...
0
votes
1answer
23 views

Fadein images with jQuery before DOM is ready

I'm trying to make all images of my website to show up with a fade-in effect, something like www.blu-ray.com, but no luck yet. Unfortunately in the way I do that and since the body of my webpage is a ...
0
votes
0answers
13 views

Detecting when DOM changes after initial page load have been completely rendered

Once a page has been loaded and rendered, what's the best way to determine when a new element injected into the page has been completely rendered. Consider this example: var parent = ...
0
votes
1answer
69 views

Javascript .onload not firing in IE? window.open reference issue?

I haven't been able to make sense of the answers to related questions so far(down to my knowledge level), so... I have a simple script(using jQuery) that opens a new window and adds certain content ...
0
votes
4answers
29 views

Replace table labels text on onload

HI i have a table in which i have to replace the labels of tables on load . Below is the structure of my table. <table> <tbody> <tr> <th> <label ...
0
votes
0answers
26 views

Print iframe IE8 issue

How to change: _printIFrame: function() { var detailsFrame = document.getElementById("detailsFrame"); window.detailsFrame.focus(); window.detailsFrame.print(); }, So I can ...
-1
votes
0answers
27 views

Uncaught TypeError: Cannot read property 'document' of undefined site.php:54 onload

Uncaught TypeError: Cannot read property 'document' of undefined site.php:54 onload I'm receiving this error at Chrome's console, can anyone give me a tip about how to fix it? Line 54 var dIfr = ...
0
votes
0answers
24 views

Create OnChange And OnLoad JQuery-Event

i try with jquery for a responsive webdesign to change all image pathes. the roblem: when loading the page this will work, but i need a kind of an onchange event for mobile devices when the device is ...
0
votes
2answers
52 views

Jquery $(window).load not working as expected when in script referenced from inside an iframe

I have a page with an iframe. I am trying to load animations into this iframe. Each piece of content is an html page with references to javascript/jquery scripts that do soem sort of animation. For ...
0
votes
0answers
29 views

Onload behavior simultaneously to onchange

I have this application I am working on and thanks to many of your help and time I am almost done with the changes. Last issue is this: The page is an orderform where you search for a customer and ...
1
vote
1answer
49 views

How does jquery element.ready() works?

this is my first post here, so be patient if I do something wrong; it can happen even if I carefully read the rules. I have used javascript for years, but never felt the need to use a library like ...
0
votes
1answer
57 views

trying to fire onload event on script tag

I'm trying to load a set of scripts in order, but the onload event isn't firing for me. var scripts = [ '//cdnjs.cloudflare.com/ajax/libs/less.js/1.3.3/less.min.js' , ...
0
votes
1answer
92 views

javascript onchange in php while loop

I have a form where radio types are generated inside a PHP while loop. Depending on which radio is selected, java script queries MySQL to get the correct value and return it to a text box. It works ...
0
votes
2answers
52 views

jquery swap content make page default on load

I need con1 to show active and be loaded onload of page. this is my code to swap content. I am using a external php page to swap out content when the id of con1 con2 and so on our clicked. I want ...
1
vote
3answers
26 views

JavaScript Class Uncaught TypeError

I am trying to build a JavaScript class, and I am having problems with this line: this.ctx.drawImage(img.src, 0, 0, img.width, img.height); The error message that shows up is: Uncaught TypeError: ...
0
votes
1answer
33 views

Firing code on load of page not working

I have this code tied to a button that when clicked, executes code to hide a table row: <script> $(function hideinstr() { $('tr.parent td').on("click", "input.instr", function ...
0
votes
2answers
169 views

AngularJS, JQuery and Onload Event

I am writing an application on Ruby on Rails using AngularJS for resource management (dynamic loading etc) and JQuery for effects like accordion, fade in-out etc. When I want to display my data on a ...
1
vote
2answers
61 views

Load list of images in sequential order

I'm working on a website which uses ExpressionEngine to create a list of images with img1, img2, img3 etc as the ID and creates an array with their sources imgAddresses[1], imgAddresses[2], ...
0
votes
1answer
114 views

Why is my on load Bootstrap modal backdrop loading after the rest of the page content?

My Bootstrap modal loads first on a page with this code: $(window).load(function(){ $('#myModal').modal('show'); }); The problem is that the modal backdrop and it's css animation loads after the ...
-5
votes
2answers
35 views

Display GET Value Inside Of On Bodyload Command [closed]

This is what Ive come up with, but I'm not sure what else I need to do for it. <body onload=window.location='<?php " . $_GET["u"] . " ?>'>
0
votes
1answer
80 views

Running Javascript as page opens

I have a little problem, I want to run javascript as soon as page opens, however it does not work for me. On many forums and tutorials I tried they suggest using onload function in my case: <body ...
1
vote
2answers
105 views

Add class to image onload - determine if landscape

I am trying to add a class to an image after determining if it is landscape or portrait. The problem I am having is that the class is being added to the img tag like this img.landscape which is ...
0
votes
1answer
51 views

How to check div tag contains partial view?

As we know window.onload event will fire only when the page is completely loaded. I want to perform some action when a partial view loaded completely into div tag how to check that? like : ...
0
votes
2answers
108 views

ASP.NET Start Download after Page Load

I have this code to start a download after the page was displayed to the user: protected void Page_Load(object sender, EventArgs e) { Response.Redirect("http://myserver.com/myfile.zip", ...
0
votes
0answers
61 views

Accessing Image Width Outside of onload with Javascript

I am trying to use a call back to determine if an images width is correct. It seems that when using an onload that it is impossible to do a return true or false. Should this callback work to ...
0
votes
0answers
46 views

Windows Explorer on iFrame

There is my problem: I have an iFrame that displays a WebPage or Windows Explorer depending on what was specified in a textbox. I currently have this code: <!DOCTYPE html PUBLIC "-//W3C//DTD ...
1
vote
1answer
209 views

jquery bookshelf Slider modifications

I am creating book shelf using jquery bookshelf Slider. Its Working good but i need some modifications in my book self. Our Book self demo link Book shelf demo Our modifications are given below : ...
2
votes
3answers
157 views

jQuery: Highlight div box onload

This jQuery code will highlight the div box when clicked. I want to get the highlight on load, how can I do that? <!DOCTYPE html> <html> <head> <link ...
2
votes
1answer
275 views

getting an error Object doesn't support property or method 'setSrc' in web Resource in CRM 2011

I have used the WebResource on the Page and I am getting an error Object doesn't support property or method 'setSrc' in Javascript Can you Please help me My actual code is like this function ...
0
votes
1answer
46 views

Jsoup DOM applies onload java scripts?

I want to know if the DOM that I get from Jsoup Document doc = Jsoup.connect(page.getPageUrl()).get(); Will it be same as the DOM I get from the browser (just after loading)? In other ...
0
votes
1answer
65 views

Javascript: running OnLoad code without access to <body> or <head>?

I'm modding a web page that's generated by a third party project. The project essentially does something like this when your browser requests a page (pseudocode): <?php include: project's fixed ...
2
votes
1answer
59 views

Is there a way to know when external CSS inside <head> has been applied, but not to wait for images to load

$(document).ready() does not guarantee that window.onload waits for all inline (I mean static) images DOMContentLoaded does not wait for external CSS Any other solution? Have I missed anything? It ...
0
votes
2answers
100 views

hiding php created divs during onload with javascript

I am running the javascript function shoh() below on page load to hide div's. This works fine on html hard coded divs but appears not to be working on divs that are created via php. Am I correct in ...
-5
votes
1answer
54 views

Stop window.onload from being altered [closed]

In a project I want to define window.onload in a controlled way: I want to prevent window.onload from being alted by imported JS in an HTML page. So is there a way for me to stop re-definition of ...
0
votes
0answers
60 views

Change onclick to onload a tag with jQuery/Wordpress

I have a Wordpress theme that calls jQuery to open up an image gallery. When the user clicks on the image it opens the gallery. I want the gallery to open onload. Here is the current code: a href ...
1
vote
3answers
80 views

window.onload in external script gets ignored in Javascript

index.html <html> <head> <script type="text/javascript" src="foo.js"></script> <script type="text/javascript"> window.onload = function() { console.log("hello from ...
0
votes
4answers
362 views

window.onload function doesn't work on Mozilla Firefox

I'm using a loading screen for a webpage and I use window.onload function. Everything works great except in Mozilla Firefox browsers. When we first visit or refresh the page with ctrl+F5 combination, ...

1 2 3 4 5 17