Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
How do we use # in jQuery Attribute Selector?
To use # in jQuery attribute selector, include # under *= . This will find the attribute with #.
Example
You can try to run the following code to learn how to use # in jQuery attribute selector:
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function() {
$( "div[myattr*='#']" ).css("background-color", "yellow");
});
</script>
</head>
<body>
<div id="sub1" myattr="#javasubject">Java</div>
<div id="sub2" myattr="htmlsubject">HTML</div>
<div id="sub3" myattr="ruby">Ruby</div>
</body>
</html> Advertisements
