Using jQuery in Greasemonkey

Using in (with ):

(function(){
    function myjob()
    {
        // your code...
    }

    GM_xmlhttpRequest({
        method: 'GET',
        url: 'http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js',
        onload: function(r){ eval(r.responseText); myjob(); }
        });
})();

Related Posts:

  • No Related Posts
This entry was posted in Browser, Computer, Firefox, Murmuring, Network, Programming, Software, WWW. Bookmark the permalink.