Dudi
0
Q:

how to call a function as soon as a page loads javascript

<body onload="yourFunction()"> </body>
2
<script src="js/jquery-1.11.0.min.js" type="text/javascript"></script>
<script type="text/javascript">

    $(document).ready(function () {
        yourFunction();
    });
    function yourFunction(){
      //some code
    }
</script>
0

New to Communities?

Join the community