SELF is a protected namespace in IE. Avoid using it as a global variable name
$('.worker').hover(function(){ self = $(this);
Will throw Not implemented
error in IE. Others don’t care. Use me
, _this
, _self
, selfy
, pony
instead.
$('.worker').hover(function(){ self = $(this);
Will throw Not implemented
error in IE. Others don’t care. Use me
, _this
, _self
, selfy
, pony
instead.