Skip to content

Instantly share code, notes, and snippets.

@robertgreiner
Created December 29, 2011 22:59
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save robertgreiner/1536587 to your computer and use it in GitHub Desktop.
Save robertgreiner/1536587 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>jQuery Example</title>
<link rel="stylesheet" href="style.css" type="text/css" />
<script type="text/javascript" src="http://ajax.microsoft.com/ajax/jquery/jquery-1.6.1.min.js">
</script>
<script type="text/javascript">
//$(document).ready() is cross-browser
$(document).ready(function() {
alert("jQuery popup!");
});
</script>
</head>
<body>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment