Usage
This function runs automatically, so it is not called manually. Is this incorrect?
Additional Notes
This function stores the cached selectors window, document, html, and body in the nebula.dom object.
This function stores the cached RegEx patterns email, phone, date (year-month-day and month-day-year), hex (color), and IP in a window.regexPattern object.
Source File
Located in /assets/js/modules/optimization.js on line 2.
No Hooks
This function does not have any filters or actions available. Request one?
JavaScript
nebula.cacheSelectors = function(){ if ( !nebula.dom ){ nebula.dom = { document: jQuery(document), window: jQuery(window), html: jQuery('html'), body: jQuery('body'), }; } };
Override
To override or disable this JavaScript function, simply redeclare it with the exact same function name.
JavaScript
nebula.cacheSelectors = function(){ //Write your own code here, leave it blank, or return false. }