Skip to content

Instantly share code, notes, and snippets.

@StevenBlack
Created March 26, 2010 14:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save StevenBlack/344935 to your computer and use it in GitHub Desktop.
Save StevenBlack/344935 to your computer and use it in GitHub Desktop.
jQuery-UI page template
<!DOCTYPE html>
<html lang="en">
<head>
<link type="text/css" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1/themes/redmond/jquery-ui.css" rel="stylesheet" />
<style>
body{ font: 75% "Trebuchet MS", sans-serif; margin: 50px;}
</style>
</head>
<body>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js" type="text/javascript"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1/jquery-ui.min.js" type="text/javascript"></script>
<!-- <script src="http://localhost/jQuery/jquery.js" type="text/javascript"></script> -->
<!-- <script src="http://localhost/jQuery/UI-all/js/jquery-ui.min.js" type="text/javascript"></script> -->
<script type="text/javascript">
$(function() {
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment