Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


How to create clone of any object using jQuery?



How to create clone of any object using jQuery?..

Answer / chaitanya

jQuery provides clone() method which performs a deep copy of the set of matched elements, meaning that it copies the matched elements as well as all of their descendant elements and text nodes.

Hide Copy Code

$(document).ready(function(){

$('#btnClone').click(function(){

$('#dvText').clone().appendTo('body');

return false;

});

});

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More jQuery Interview Questions

What is the between $(this) and 'this' in jquery?

0 Answers  


How to disable cut,copy and paste in TextBox using jQuery?

0 Answers  


What is .siblings() method in jquery?

0 Answers  


How to write browser specific code using jQuery?

1 Answers  


How to multiple AJAX requests be run simultaneously in jQuery?

0 Answers  


Explain width() vs css(‘width’)?

0 Answers  


What is ajax and how it works?

0 Answers  


What are selectors in jQuery and how many types of selectors are there?

1 Answers  


What are the four parameters used for jQuery Ajax method?

0 Answers  


Explain remove class jquery with example?

0 Answers  


Can you use multiple document.ready() function on the same page?

0 Answers  


Is vanilla js faster than jquery?

0 Answers  


Categories