Does events are also copied when you clone any element in jQuery?



Does events are also copied when you clone any element in jQuery?..

Answer / chaitanya

As explained in previous question, using clone() method, we can create clone of any element but the default implementation of the clone() method doesn't copy events unless you tell the clone() method to copy the events. The clone() method takes a parameter, if you pass true then it will copy the events as well.

Hide Copy Code

$(document).ready(function(){

$("#btnClone").bind('click', function(){

$('#dvClickme').clone(true).appendTo('body');

});

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More jQuery Interview Questions

Explain source maps in jquery? : jquery mobile

0 Answers  


Explain .empty() vs .remove() vs .detach() in jquery

0 Answers  


How to check if number is numeric while using jquery 1.7+? : jquery mobile

0 Answers  


Explain cache paremeter of jquery ajax method?

0 Answers  


Which is fast document.getElementByID('txtName') or $('#txtName').?

1 Answers  






List the basic selectors in jquery?

0 Answers  


Can you please explain the difference between javascript and jquery? : jquery mobile

0 Answers  


Where can we download JQuery?

0 Answers  


How to include jQuery in ASP.Net project?

0 Answers  


Explain remove class jquery with example?

0 Answers  


Explain which program is useful for testing jquery?

0 Answers  


How do you implement animation functionality?

1 Answers  


Categories