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 to use jQuery selector for the elements with an ID that ends with a given string?
To get the elements with an ID that ends with a given string, use attribute selector with $ character.
Example
You can try to run the following code to learn how to to use jQuery selector for the elements with an ID that ends with a given string. Let’s say we are going for elements with an ID ending with the string “new1”.
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("[id$=new]").css("background-color", "yellow");
});
</script>
</head>
<body>
<div id="id1new" myattr="javasubject">Java</div>
<div id="myid1" myattr="htmlsubject">HTML</div>
<div id="id2new" myattr="rubysubject">Ruby</div>
</body>
</html> Advertisements
