Skip to content

Instantly share code, notes, and snippets.

@fakiolinho
Created April 21, 2013 12:02
Show Gist options
  • Save fakiolinho/5429369 to your computer and use it in GitHub Desktop.
Save fakiolinho/5429369 to your computer and use it in GitHub Desktop.
jQuery: jQuery Existence
<!-- Check if jQuery already exists -->
<script type="text/javascript">
(function() {
if(window.jQuery === undefined)
{
document.write('<script type="text/javascript" src="http://code.jquery.com/jquery-1.9.1.js"><\/script>');
}
else
{
jQuery = window.jQuery;
}
}());
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment