To make a form with HTML, we use the following −
<form action = "" method = "get"> Details:<br><br> Student Name<br><input type="name" name="sname"><br> Exam Date and Time<br><input type="datetime-local" name="datetime"><br> <input type="submit" value="Submit">
To make a form with jQuery and HTML, add input type text as −
$form.append('<input type="button" value="button">');
A better example would be −
$myform = $("<form></form>"); $myform.append('<input type="button" value="button">'); $('body').append($myform);