jQuery Selector :reset

Introduction

The :reset selector selects button and input elements with type=reset.

$(":reset")

Select <input> and <button> elements with type="reset":

View in separate window

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
  $(":reset").css("background-color", "red");
});/*from   www .  j av a 2s.  c o  m*/
</script>
</head>
<body>

<form action="">
  Name: <input type="text" name="user"><br>
  Password: <input type="password" name="password"><br>
  <button type="button">Useless Button</button>
  <input type="button" value="CSS"><br>
  <input type="reset" value="Reset">
  <input type="submit" value="Submit"><br>
</form>

</body>
</html>



PreviousNext

Related