I have a chrome extension that uses jQuery as the contents of a script with noconflict like;
var myDomainJquery = $.noConflict(true);
on the other hand, some websites also use jQuery noconflict in their path; for example new york times
<script>var jQ = jQuery.noConflict(true);</script>
Then I get I can not read the noConflict property of the undefined error on the host website.
Is there any way to fix this problem?
source
share