From 6e868bb091f14a534c898c7a47e6fecd3e403b60 Mon Sep 17 00:00:00 2001 From: John Resig Date: Tue, 25 Jul 2006 20:20:18 +0000 Subject: [PATCH] Events that fire after the browser has already moved to another page no longer fire incorrectly. --- jquery/jquery.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/jquery/jquery.js b/jquery/jquery.js index 9aac295..178ed0a 100644 --- a/jquery/jquery.js +++ b/jquery/jquery.js @@ -1726,6 +1726,8 @@ jQuery.extend({ }, handle: function(event) { + if ( typeof jQuery == "undefined" ) return; + event = event || jQuery.event.fix( window.event ); // If no correct event was found, fail -- 1.7.10.4