> I was tinking that maybe moving the input element could works, but I'm > looking in the doc and I cant find a method for moving a DOM element.
There's a ton of them. after, before, insertAfter, insertBefore, append, prepend, etc http://docs.jquery.com/Manipulation Ex: $('#myElementToMove').insertAfter('#myDestinationDiv');