Use HTML with jQuery to make a form


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);

Updated on: 12-Nov-2023

1K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements