- 1
How to insert element ? & show form
by using jqurery
2 Answers
+ 1
If you want to create a new element in jQuery you can write:
$('<div id="myElement">').appendTo('body');
Do you want to show a form which was hiding?
$('#myForm').show();
Or you delete your class you used:
$('#myForm').deleteClass('.hide');
0
tq