paperlined.org
dev > web > jslibs > jquery > snippets
document updated 12 years ago, on Jan 30, 2012
Paste this into an HTML file to quickly get going with jQuery:



<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script> 
<script type="text/javascript">                                         
    $(document).ready(function() {

        // do stuff when DOM is ready

    });
</script>