:submit Selector - Javascript jQuery Selector

Javascript examples for jQuery Selector:submit

Description

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

The following code shows how to select <input> and <button> elements with type="submit":

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
    $(":submit").css("background-color", "blue");
});/*from   ww  w .  jav a  2 s  . c  om*/
</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="Another button"><br>
  <input type="reset" value="Reset">
  <input type="submit" value="Submit"><br>
</form>

</body>
</html>

Related Tutorials