JQuery: add fieldset element between form
How to insert post fieldset using jquery, now I have this
<form action="" method="post">
all dynamic field generated with db and array
</form>
I want to add a fieldset between the form tags so that the code becomes
<form action="" method="post">
<fieldset>
all dynamic field generated with db and array
</fieldset>
</form>
+3
source to share