Are you new? Read the FAQ and catch up on!
201 views

Call a javascript function when jQuery is downloaded and ready

Javascript
  1. <script type="text/javascript" charset="utf-8">
  2.         (function(){
  3.             yourFunction();
  4.         })(jQuery)
  5. </script>
  6.  

­

Tags: JavaScript jQuery initialization

Embed: