Created
August 3, 2013 08:18
-
-
Save miya0001/6145701 to your computer and use it in GitHub Desktop.
ブラウザのエクステンションやブックマークレットでjQueryを使う。
既存のサイトにjQueryがあるかどうかは不明。さらにブラウザの拡張からはサイト側のjQueryにはアクセス出来ない。(仕様)
さらにサイト側のjsは拡張機能側のjQueryにアクセスできてしまう。<=noConflict()でこれを回避したい。
これってどうなんでしょう???
This file contains 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
(function(func){ | |
var path = '//example.com'; | |
var jq = document.createElement('script'); | |
jq.src = path + '/lib/jquery-1.10.2.min.js'; | |
document.body.appendChild(jq); | |
func(jQuery.noConflict()); | |
})(function($){ | |
console.log($('body')); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment