asp.net - jquery pageload event isn't working -
i'm trying call function on jquery pageload, it's not working. can resolve it.? i'm using jquery in asp.net webform, not in external .js file
function pageload() { alert('hi!!'); }
try this. can put inside head tag or body tag.
<script type="text/javascript"> pageload(); function pageload() { alert('hi!!'); } </script>
Comments
Post a Comment