Skip to content

Instantly share code, notes, and snippets.

@tirams
Created December 20, 2011 00:29
Show Gist options
  • Save tirams/1499595 to your computer and use it in GitHub Desktop.
Save tirams/1499595 to your computer and use it in GitHub Desktop.
function to include latest jquery
function(){
if (typeof jQuery != 'undefined')
{
console.log('jquery version ' + $.fn.jquery);
return;
}
var s=document.createElement('script');
s.setAttribute('src','http://code.jquery.com/jquery.min.js');
document.body.appendChild(s);
void(s);
console.log('jquery version ' + $.fn.jquery);
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment