Created
June 15, 2012 15:19
-
-
Save arantius/2936973 to your computer and use it in GitHub Desktop.
jQuery Require Test
This file contains hidden or 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
// ==UserScript== | |
// @name jQuery Require Test | |
// @namespace http://github.com/arantius | |
// @include http* | |
// @version 1 | |
// @grant none | |
// @require https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js# | |
// ==/UserScript== | |
dump('jQuery version: ' + $().jquery + '\n'); | |
$(document).click(function() { dump("jQuery says doc click!\n"); }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment