- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
jQuery change() with Example
The change() method in jQuery is used to trigger the change event. It occurs when the value of an element has been changed.
Syntax
The syntax is as follows −
$(selector).change()
Example
Let us now see an example to implement the jQuery change() method −
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> <script> $(document).ready(function() { $(".demo").change(function() { $(this).css("background-color", "red"); }); }); </script> </head> <body> <h2>Login</h2> Enter Username: <input type="text" class="demo"><br> Enter Password: <input type="password"> </body> </html>
Output
This will produce the following output −
Write some text in the first input and press enter −
- Related Articles
- jQuery nextUntil() with Example
- jQuery innerWidth() with Example
- jQuery parentsUntil() with Example
- jQuery appendTo() with Example
- jQuery closest() with Example
- jQuery dblclick() with Example
- jQuery fadeOut() with Example
- jQuery find() with Example
- jQuery first() with Example
- jQuery focus() with Example
- jQuery click() with Example
- jQuery blur() with Example
- jQuery focusin() with Example
- jQuery finish() with Example
- jQuery addClass() with Example

Advertisements