Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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:(

share|improve this question
8  
and how are you calling this function? Chances are that your this variable is not what you think it is. – Alnitak Aug 15 '12 at 12:31
@Alnitak OK, thanks, added calls, any ideas now? – scythargon Aug 15 '12 at 12:59
what are you trying to do exactly? – zero Aug 15 '12 at 13:00
I think you need to explain in plain English what it is you expect to happen. The relevant HTML for .item and #head_hidden would be good too. What you are currently doing with append is you are removing the element the jQuery object controls is 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 to detach controls again the item will not be moved back but be gone from the DOM and only exist in the jQuery wrapper controls. Is that what you expect to actually happen? – François Wahl Aug 15 '12 at 13:03

1 Answer

up vote 2 down vote accepted

EDIT:::is this what you are attempting to do: http://jsfiddle.net/EhzFy/3/

if so then you have to remove the child from the div that it was added to:$(this).children().eq(0).detach();

but if all you're trying to accomplish is making the object move from one div to another then try this: http://jsfiddle.net/EhzFy/2/

share|improve this answer
you read my mind:) thanks. – scythargon Aug 15 '12 at 13:16
@scythargon: I think it mainly came together by eventually obtaining all the required details :) – François Wahl Aug 15 '12 at 13:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.