Open In App

jQuery | [attribute=value] Selector

Improve
Improve
Improve
Like Article
Like
Save Article
Save
Share
Report issue
Report

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:



Last Updated : 26 Feb, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads