Disable Chrome Developer Tools

Chrome Developer Tools defines a handy feature $(as well as several other amenities). However, when using jQuery it is convenient to have $ = jQuery. Is it possible to disable the autodefined Chrome function $without disabling more convenient definitions (for example, $0)?

+5
source share
2 answers

Chrome autodefined is $superseded by any function that may be on the page. For example, open a console on StackOverflow and type $ === jQuery, and you should get true. If I do not understand you, there is no need to disable Chrome by default $in order to free up space for other functions.

+3
source

Your search is jQuery.noConflict (). See here:

http://api.jquery.com/jQuery.noConflict/

0
source

All Articles