Skip to content

Instantly share code, notes, and snippets.

@arantius
Created June 15, 2012 15:19
Show Gist options
  • Save arantius/2936973 to your computer and use it in GitHub Desktop.
Save arantius/2936973 to your computer and use it in GitHub Desktop.
jQuery Require Test
// ==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