vide
Version:
Easy as hell jQuery plugin for video backgrounds.
13 lines (10 loc) • 375 B
JavaScript
!(function() {
// Get any lib=___ param from the query string.
var library = location.search.match(/[?&]lib=(.*?)(?=&|$)/);
/* jshint -W060 */
if (library) {
document.write('<script src="../libs/' + library[1] + '"></script>');
} else {
document.write('<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>');
}
}());