I tried using

onPageLoad: function() {
    alert("hi");
}

but it won't work. I need it for a Firefox extension.

Any suggestions please?

link|improve this question

78% accept rate
specify in what context you use this, in html page? in extension? – user434917 May 20 '09 at 18:48
2  
Did you mean onPageLoad in the title? – Seb May 20 '09 at 18:53
sry yes i did mean onPageLoad and its in a firefox extension – Lilz May 20 '09 at 19:07
feedback

5 Answers

If you want to do this in vanilla javascript, just use the window.onload event handler.

window.onload = function() {
  alert('hi!');
}
link|improve this answer
feedback

Assuming you meant the onload-event:

You should use a javascript library like jQuery to make it work in all browsers.

<script type="text/javascript">
    $(document).ready(function() {
        alert("Hi!");
    });
</script>

If you really don't want to use a javascript library (Don't expect it to work well in all browsers.):

<script type="text/javascript">
    function sayHi() {
        alert("Hi!");
    }
</script>
<body onload="javascript:sayHi();">
...
link|improve this answer
The jQuery document ready event is not the same as the onload event. The ready event is fired when the DOM is parsed, the onload event is fired when all the items on the page (images etc.) have been loaded. – Jon Benedicto Nov 11 '09 at 17:38
Also, the syntax for the <body onload=""> is the following: <body onload="sayHi()">. Adding javascript: will not work. – Jon Benedicto Nov 11 '09 at 17:38
feedback
var itsloading = window.onload;

or

<body onload="doSomething();"></body> 
//this calls your javascript function doSomething

for your example

<script language="javascript">

function sayhi() 
{
  alert("hi")
}
</script>

<body onload="sayhi();"></body>

EDIT -

For the extension in firefox On page load example

link|improve this answer
feedback
       <script language="javascript">

    window.onload = onPageLoad();

    function onPageLoad() {
        alert('page loaded!');
        }
</script>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.