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”.

Live Demo

<!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>

Updated on: 18-Dec-2019

978 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements