window.load event not getting fired when I open a link in a new tab

window.load event not getting fired when I open a link in a new tab

I am opening a link in new tab using **Ctrl+click.** Simultaneously I am opening 6 to 7 tabs. On few pages I am getting it and on some its not working.

**Browser - Chromium ,Version 53.0.2785.143 Built on Ubuntu , running on LinuxMint 17.3 (64-bit)**

This is the my code.

    $(window).load(function () {
          alert('here');
    });

What could be the possible issue ?

Basically I want to fire an event when whole page is completely loaded.