window.onload
function Hello()
{
alert(‘Hello World!”);
}
window.onload=Hello; // DO NOT put the parenthesis next to the function name.
Categories: JavaScript
function Hello()
{
alert(‘Hello World!”);
}
window.onload=Hello; // DO NOT put the parenthesis next to the function name.