diff --git a/demos/accordion/hoverintent.html b/demos/accordion/hoverintent.html
index 184951cf2..8f628bda8 100644
--- a/demos/accordion/hoverintent.html
+++ b/demos/accordion/hoverintent.html
@@ -29,7 +29,7 @@
$( this ).unbind( "mouseover", jQuery.event.special.hoverintent.handler );
},
handler: function( event ) {
- var self = this,
+ var that = this,
args = arguments,
target = $( event.target ),
cX, cY, pX, pY;
@@ -54,7 +54,7 @@
// is fired asynchronously and the old event is no longer
// usable (#6028)
event.originalEvent = {};
- jQuery.event.handle.apply( self, args );
+ jQuery.event.handle.apply( that, args );
} else {
pX = cX;
pY = cY;
diff --git a/demos/autocomplete/categories.html b/demos/autocomplete/categories.html
index 2eead8ad2..902867478 100644
--- a/demos/autocomplete/categories.html
+++ b/demos/autocomplete/categories.html
@@ -22,14 +22,14 @@