silverstripe-userforms/thirdparty/jquery-validate/test/jquery.js
2013-03-18 19:06:47 -04:00

26 lines
466 B
JavaScript

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