The jQuery [attribute=value] selector is used to select and modify HTML elements with specified attribute and value.
Parameter Values:
- attribute: Used to specify attribute to find.
- Value: Used to specify value to find.
Syntax:
$("[attribute=value]")
Example-1: This example selects the elements having id GFG and adds a border to it.
<!DOCTYPE html>
< html >
< head >
< script src =
</ script >
< script >
$(document).ready(function() {
$("[id=GFG]").css(
"border", "5px solid green");
});
</ script >
</ head >
< body >
< h2 id = "GFG" >
GeeksForGeeks
</ h2 >
</ body >
</ html >
|
Output:

Example-2: This example changes the text color of elements having a class attribute with value GFG.
<!DOCTYPE html>
< html >
< head >
< script src =
</ script >
< script >
$(document).ready(function() {
$("[class=GFG]").css(
"color", "green");
});
</ script >
</ head >
< body >
< h2 class = "GFG" >
GeeksForGeeks
</ h2 >
</ body >
</ html >
|
Output:

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
26 Feb, 2019
Like Article
Save Article