Uncaught TypeError: Object [object Object] has no method 'replace' to be precise. The code:
var controls = $('#head_hidden').children().eq(0);
var item_mouse_over = function() {
$(this).append(controls);
}
var item_mouse_leave = function() {
$(this).detach(controls); //this is the problematic strig
}
$('.item').mouseover(item_mouse_over);
$('.item').mouseleave(item_mouse_leave);
Here is jsfiddle explanation. With item_mouse_over() I add "controls" to element, but with item_mouse_leave() I could not remove them:(
thisvariable is not what you think it is. – Alnitak Aug 15 '12 at 12:31.itemand#head_hiddenwould be good too. What you are currently doing withappendis you are removing the element the jQuery objectcontrolsis referencing from the DOM and moving it into back into the DOM into the element referenced by the jQuery wrapper$(this). If after that you want to want todetachcontrolsagain the item will not be moved back but be gone from the DOM and only exist in the jQuery wrappercontrols. Is that what you expect to actually happen? – François Wahl Aug 15 '12 at 13:03