Created
November 13, 2010 14:26
-
-
Save e2kaneko/675365 to your computer and use it in GitHub Desktop.
jQueryのonloadイベント。window.onloadよりも前に実行される。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js" /> | |
<script type="text/javascript"> | |
$(document).ready(function(){ | |
alert(); | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment