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 |
Explain the use of the .pushstack() method.
Have any of your startup projects failed dismally - if so, why and how did you learn from them?
What are the basic selectors in jQuery?
Difference between document.ready and window.onload? : jQuery Mobile
Difference between event.PreventDefault and event.stopPropagation?
How can you apply a style on an element using jQuery?
Where jquery mobile works? : jquery mobile
Tell me which program is useful for testing jquery?
What is the difference between find and children methods?
What were the biggest challenges of getting the 1.7 release out there?
What is a cdn? : jQuery Mobile
How to debug jquery code/ debug jquery?