1
0
Fork 0

Ajout script jquery

This commit is contained in:
Matthieu Dubuget 2016-10-16 11:10:32 +02:00
parent 61c93eb852
commit e5afb24e4e
1 changed files with 26 additions and 0 deletions

26
jquery.js vendored Normal file
View File

@ -0,0 +1,26 @@
(function() {
var parts = document.location.search.slice( 1 ).split( "&" ),
length = parts.length,
i = 0,
current,
version,
url;
for ( ; i < length; i++ ) {
current = parts[ i ].split( "=" );
if ( current[ 0 ] === "jquery" ) {
version = current[ 1 ];
break;
}
}
if ( version === "git" ) {
url = "http://code.jquery.com/jquery-git.js";
} else {
url = "../../jquery-" + ( version || "1.9.1" ) + ".js";
}
document.write( "<script src='" + url + "'></script>" );
}() );