From: Brandon Aaron Date: Mon, 19 Nov 2007 16:15:51 +0000 (+0000) Subject: Fix for #1933 X-Git-Url: http://git.asbjorn.it/?a=commitdiff_plain;h=e6a481e533dc25ecf4d25123d6515c61a97a7f19;hp=5e99807271ebe194b7f0278a929b053b4dd46c81;p=jquery.git Fix for #1933 --- diff --git a/src/event.js b/src/event.js index 4927249..9922e02 100644 --- a/src/event.js +++ b/src/event.js @@ -453,5 +453,5 @@ function bindReady(){ // And prevent errors on refresh with events like mouseover // Window isn't included so as not to unbind existing unload events jQuery(window).bind("unload", function() { - $("*").add(document).unbind(); + jQuery("*").add(document).unbind(); });