Skip to content

Instantly share code, notes, and snippets.

@wasipo
Created February 20, 2019 14:07
Show Gist options
  • Save wasipo/4fc71ed414b318b4c772af746be7a560 to your computer and use it in GitHub Desktop.
Save wasipo/4fc71ed414b318b4c772af746be7a560 to your computer and use it in GitHub Desktop.
<!-- うごかない -->
<html>
<head>
<script>
jQuery(function(){
alert("age")
});
</scirpt>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<meta charset="utf-8" />
</head>
</html>
<!-- うごく -->
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script>
jQuery(function(){
alert("age")
});
</scirpt>
<meta charset="utf-8" />
</head>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment