You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
549 B
15 lines
549 B
(function() {
|
|
// Get any jquery=___ param from the query string.
|
|
var jqversion = location.search.match(/[?&]jquery=(.*?)(?=&|$)/);
|
|
var path;
|
|
if (jqversion) {
|
|
// A version was specified, load that version from code.jquery.com.
|
|
path = 'http://code.jquery.com/jquery-' + jqversion[1] + '.js';
|
|
} else {
|
|
// No version was specified, load the local version.
|
|
path = '../libs/jquery/jquery.js';
|
|
}
|
|
// This is the only time I'll ever use document.write, I promise!
|
|
document.write('<script src="' + path + '"></script>');
|
|
}());
|