Event JavaScript Tutorial

< html>

Inline DOM Event Registration

function helloMsg() {
    var helloString = "hello there";
    document.write(helloString);
}
function helloTwice() {
    var helloString = "hi again";
    document.write(helloString);
}
window.onload=helloTwice;