Use HTML with jQuery to Make a Form



To make a form with HTML, we use the following −

Open Compiler
<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: 2023-11-12T11:32:28+05:30

721 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements