How to use Button Selector Method in JQuery

This article describe about Button Selector Method in JQuery.
  • 1612

Use :button Selector method in jQuery

We select specified button elements with type="button".

This method select button and input elements for button type.

Example

<!DOCTYPE html>

<html>

<head>

<script type="text/javascript" src="jquery.js"></script>

<script type="text/javascript">

    $(document).ready(function () {

        $(":button").css("background-color", "yellow");

    });

</script>

</head>

<body>

<form action="">

Name: <input type="text" name="user" />

<br />

Password: <input type="password" name="password" />

<input type="reset" value="Reset" />

<input type="submit" value="Submit" />

<br />

</form>

</body>

</html>

Output

op1.jpg

You may also want to read these related articles here

Ask Your Question 

Got a programming related question? You may want to post your question here

Programming Answers here

© 2020 DotNetHeaven. All rights reserved.