Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 10th, 2012  |  syntax: None  |  size: 0.25 KB  |  hits: 3  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. JavaScript Hacking
  2. (function(){
  3. jQueryOrig = jQuery;
  4. window.jQuery = window.$ = function(){
  5.     if (jQueryOrig("#secure").is(arguments[0])) {
  6.         throw new Error("Security breach");
  7.     } else return jQueryOrig.apply(this, arguments);
  8. }
  9. }());