jQuery | :text Selector
The :text Selector is used to select input element with having a text field i.e (type==text).
Syntax:
$(":text")
Example:
<!DOCTYPE html> < html > < head > < script src = </ script > < script > $(document).ready(function() { $(":text").css("background-color", "green"); }); </ script > </ head > < body > < center > < h1 style = "color:green;" > GeeksForGeeks </ h1 > < h2 >jQuery :text Selector </ h2 > < form action = "" > Name: < input type = "text" name = "user" > < br > Password: < input type = "password" name = "password" > < br > < br > < input type = "reset" value = "Reset" > < input type = "submit" value = "Submit" > < br > </ form > </ center > </ body > </ html > |
Output:
Supported Browsers: The browser supported by jQuery :text Selector are listed below:
- Google Chrome
- Internet Explorer
- Firefox
- Opera
- Safari