Skip to content

Instantly share code, notes, and snippets.

@tirams
Created December 22, 2011 04:56
Show Gist options
  • Save tirams/1508964 to your computer and use it in GitHub Desktop.
Save tirams/1508964 to your computer and use it in GitHub Desktop.
How to add html tag to include jquery
_ ____
(_)/ __ \
_| | | |_ _ ___ _ __ _ _
| | | | | | | |/ _ \ '__| | | |
| | |__| | |_| | __/ | | |_| |
| |\___\_\\__,_|\___|_| \__, |
_/ | __/ |
|__/ |___/
//get latest minified
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
//latest non minified
<script src="http://code.jquery.com/jquery-latest.js"></script>
// or google cdn
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
_ ____ _ _ _____
(_)/ __ \ | | | |_ _|
_| | | |_ _ ___ _ __ _ _| | | | | |
| | | | | | | |/ _ \ '__| | | | | | | | |
| | |__| | |_| | __/ | | |_| | |__| |_| |_
| |\___\_\\__,_|\___|_| \__, |\____/|_____|
_/ | __/ |
|__/ |___/
//jq UI ajax
// non min
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.14/jquery-ui.js"></script>
//min
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.14/jquery-ui.min.js"></script>
____ _ _ _
| _ \ | | | | (_)
| |_) | __ _ ___| | __| |__ ___ _ __ ___ _ ___
| _ < / _` |/ __| |/ /| '_ \ / _ \| '_ \ / _ \ | / __|
| |_) | (_| | (__| < | |_) | (_) | | | | __/_| \__ \
|____/ \__,_|\___|_|\_\|_.__/ \___/|_| |_|\___(_) |___/
_/ |
|__/
<script src="http://cdnjs.cloudflare.com/ajax/libs/backbone.js/0.5.3/backbone-min.js"></script>
_ _
| | (_)
_ _ _ __ __| | ___ _ __ ___ ___ ___ _ __ ___ _ ___
| | | | '_ \ / _` |/ _ \ '__/ __|/ __|/ _ \| '__/ _ \ | / __|
| |_| | | | | (_| | __/ | \__ \ (__| (_) | | | __/_| \__ \
\__,_|_| |_|\__,_|\___|_| |___/\___|\___/|_| \___(_) |___/
_/ |
|__/
<script src="http://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.2.2/underscore-min.js"></script>
<script src=""></script>
<script src=""></script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment