Javascript – How to use onPageLoad in Javascript

firefoxjavascriptonpageloadstringtabs

I tried using

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

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

Any suggestions please?

Best Solution

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

window.onload = function() {
  alert('hi!');
}