Хабр Курсы для всех
РЕКЛАМА
Практикум, Хекслет, SkyPro, авторские курсы — собрали всех и попросили скидки. Осталось выбрать!
$(document).ready(function()........ // Add jQuery
var GM_JQ = document.createElement('script');
GM_JQ.src = 'http://jquery.com/src/jquery-latest.js';
GM_JQ.type = 'text/javascript';
document.getElementsByTagName('head')[0].appendChild(GM_JQ);
var proto = document.createElement('script');
proto.src = 'http://ajax.googleapis.com/ajax/libs/prototype/1.6.1/prototype.js';
proto.onload = onload();
document.body.appendChild(proto);function onload() {
if (window.Prototype && window.init) window.init()
}
//wait for jQuery to be loaded
function waitForJquery(){
if (typeof unsafeWindow.jQuery == 'undefined') {
window.setTimeout(waitForJquery, 100);
} else {
$ = unsafeWindow.jQuery;
//your code here
}
}
waitForJquery();
Используем jQuery в скриптах GreaseMonkey