I\'m new to JavaScript.
I would like to call JavaScript / jQuery function after the page load in aspx page.
I tried using
Would be best to use a framework like jQuery. In jQuery you can define a function like this:
$(document).ready(function() { });
This way it will be called when the DOM is fully loaded.
A full documentation of the ready() function can be found here.