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

Untitled

By: a guest on Sep 7th, 2012  |  syntax: None  |  size: 0.25 KB  |  hits: 11  |  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.   dirtyFrameHack = function() {
  2.     $("a").unbind("click");
  3.     return $("a").click(function(e) {
  4.       var href;
  5.       href = $(this).attr("href");
  6.       if (!~href.indexOf("#")) {
  7.         window.open(href);
  8.         return false;
  9.       }
  10.     });
  11.   };