Using jQuery you can clear form fields. Here I am going to describe, how we can clear all of the fields except a few using jQuery.
Example of Clear form fields:
<div id="mainDiv"> <input type="text" id="txt1" /><br/> <input type="text" id="txt2" /><br/> <input type="text" id="txt3" /><br/> <input type="text" id="txt4" /><br/> <button id="clearall">Clear All</button> </div>
Now, we can get this using a jQuery like below:
$('#clearall').click(function(){ $('#mainDiv > input:text').val(''); });
Based on United States, Jacob Frazier is a skilled JavaScript developer with over 8 years of experience. He is passionate about change and trying new things, both professionally and personally. He loves startups and is extremely proactive.