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(); }
        });
})();
This entry was posted in Browser, Computer, Firefox, Murmuring, Network, Programming, Software, WWW. Bookmark the permalink.

One Response to Using jQuery in Greasemonkey

  1. Jacky says:

    It seems that you can use @require to include the library in the new version of greasemonkey: http://wiki.greasespot.net/Metadata_block#.40require .

Leave a Reply

Your email address will not be published. Required fields are marked *

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>