This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* jQuery Plugin Boilerplate | |
* | |
* Call the plugin by supplying a method and/or options: | |
* | |
* $("element").myplugin(); | |
* $("element").myplugin({ option1: true, option2: true }); | |
* $("element").myplugin("secondary_method"); | |
* $("element").myplugin("secondary_method", { option1: true, option2: true }); | |
* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Doctype; | |
var publicId; | |
var search; | |
var htmlVersion; | |
if (document.doctype) { | |
publicId = document.doctype.publicId; | |
} else { | |
/* document.doctype doesn't exist - detect Explorer */ | |
var IE = /*@cc_on!@*/false; |