/ Published in: jQuery
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<script src="http://www.google.com/jsapi"></script> <script type="text/javascript"> google.load("jquery", "1.2.6"); google.setOnLoadCallback(function() { //Code to be inserted in this area }); </script> /* the best way (fastest and most efficient implementation) */ <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"></script> <script type="text/javascript"> $(document).ready(function() { //This is more like it! }); </script>