I have two html select boxes where items are moved from left to right, now I want to change the behavior such that elements are copied from right to the left. I tried Oject.clone(o) and .cloneNode(true) with prototype library. It cause my browser to hang,

Presently the code that moves elements from left to right is as follows,

$('left').appendChild($('right').options.item($('right').selectedIndex));

How do I change this such that there is a copy of elements from left to right, instead of actual moving.

link|improve this question

55% accept rate
feedback

1 Answer

up vote 0 down vote accepted

Instead of Object.clone() use Element.clone()

var selected = $('right').options.item($('right').selectedIndex);
var copy = Element.clone(selected, true);
$('left').appendChild(copy);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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