Es posible que desee hacer esto todo el tiempo de forma predeterminada. He estado luchando por ajustar la función jquery o el método jquery.fn.init para hacer esto sin error, pero puede hacer un cambio simple en la fuente jquery para hacer esto. Se incluyen algunas líneas circundantes que puede buscar. Recomiendo buscar fuente jquery paraThe jQuery object is actually just the init constructor 'enhanced'
var
version = "3.3.1",
// Define a local copy of jQuery
jQuery = function( selector, context ) {
// The jQuery object is actually just the init constructor 'enhanced'
// Need init if jQuery is called (just allow error to be thrown if not included)
var result = new jQuery.fn.init( selector, context );
if ( result.length === 0 ) {
if (window.console && console.warn && context !== 'failsafe') {
if (selector != null) {
console.warn(
new Error('$(\''+selector+'\') selected nothing. Do $(sel, "failsafe") to silence warning. Context:'+context)
);
}
}
}
return result;
},
// Support: Android <=4.0 only
// Make sure we trim BOM and NBSP
rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;
jQuery.fn = jQuery.prototype = {
Por último, pero no menos importante, puede obtener el código fuente de jquery sin comprimir aquí: http://code.jquery.com/