As a bookmarklet:
javascript:(function(e,s){e.src=s;e.onload=function(){jQuery.noConflict();console.log('jQuery injected')};document.head.appendChild(e);})(document.createElement('script'),'//code.jquery.com/jquery-latest.min.js')
As a bookmarklet:
javascript:(function(e,s){e.src=s;e.onload=function(){jQuery.noConflict();console.log('jQuery injected')};document.head.appendChild(e);})(document.createElement('script'),'//code.jquery.com/jquery-latest.min.js')
| // Copy and paste the code below into developer console | |
| (function(e, s) { | |
| e.src = s; | |
| e.onload = function() { | |
| jQuery.noConflict(); | |
| console.log('jQuery injected'); | |
| }; | |
| document.head.appendChild(e); | |
| })(document.createElement('script'), '//code.jquery.com/jquery-latest.min.js') |