javascript - duplicate html element -
Is aware of any jquery plugin that handles duplication of some random HTML elements? I'm looking for a way to dynamically add similar rows in some form. I know that this is not difficult, but I do not really want to change the wheel again here.
.. The clone () method, when used with any of the insertion methods, is a convenient way to duplicate the elements on a page.
$ ('original selector'). () .appendTo ('selectorToPlaceClone')
Comments
Post a Comment