jQuery :contains() selector regex for matching text within elements

jquery_logo

 

jQuery contains() selector simply matches text within selectors.  It’s also case-sensitive, so we have very limitation for selecting or finding elements to match approximately.

i.e.

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<a href="https://www.vikaskbh.com">Vikas Bhagwagar</a>
<a href="https://www.vikaskbh.com">Vikas Bhagwagar</a>
<a href="https://www.vikaskbh.com">Vikas Bhagwagar</a>

jQuery

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
if($('a:contains("Vikas")').length) {
console.log("my link exists");
}
if($('a:contains("Vikas")').length) { console.log("my link exists"); }
if($('a:contains("Vikas")').length) {
console.log("my link exists");
}

How about links those are inserted dynamically into DOM and we want to make sure if they exist before manipulation of some action?

i.e.

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<a href="http://www.example1.com">Example 1</a>
<a href="http://www.assignment1.com">Assignment 1</a>
<a href="http://www.example2.com">Example 2</a>
<a href="http://www.assignment2.com">Assignment 2</a>
<a href="http://www.example1.com">Example 1</a> <a href="http://www.assignment1.com">Assignment 1</a> <a href="http://www.example2.com">Example 2</a> <a href="http://www.assignment2.com">Assignment 2</a>
<a href="http://www.example1.com">Example 1</a>
<a href="http://www.assignment1.com">Assignment 1</a>
<a href="http://www.example2.com">Example 2</a>
<a href="http://www.assignment2.com">Assignment 2</a>

What If we want to find, links containing text “Example” or “Assignment” exist?
If yes, how many?

Here jQuery contains() selector won’t work because it needs explicit arguments like $(‘a:contains(“Example 1”)’)

So, here regular expression can do the job.

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
var valid_links_regex = "example|assignment";
var valid_links_regex = "example|assignment";
var valid_links_regex = "example|assignment";

 Matching with Text nodes

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
var re = new RegExp(valid_links_regex, 'ig');
if(TEXT.match(re)) {
// your code here
}
var re = new RegExp(valid_links_regex, 'ig'); if(TEXT.match(re)) { // your code here }
var re = new RegExp(valid_links_regex, 'ig');
if(TEXT.match(re)) {
  // your code here
}

 Using regular expression with jQuery anchor selector

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
$('a').each(function(k,v){
var re = new RegExp(valid_links_regex, 'ig');
if($(this).text().match(re)) {
// do something
}
});
$('a').each(function(k,v){ var re = new RegExp(valid_links_regex, 'ig'); if($(this).text().match(re)) { // do something } });
$('a').each(function(k,v){
    var re = new RegExp(valid_links_regex, 'ig');
	if($(this).text().match(re)) {
		// do something
	}
});

Final Code

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
var findMyLinks = function () {
var valid_links_regex = "example|assignment";
var links = []
$('a').each(function (k, v) {
var re = new RegExp(valid_links_regex, 'ig');
if ($(this).text().match(re)) {
links.push($(this));
}
});
return links;
}
var findMyLinks = function () { var valid_links_regex = "example|assignment"; var links = [] $('a').each(function (k, v) { var re = new RegExp(valid_links_regex, 'ig'); if ($(this).text().match(re)) { links.push($(this)); } }); return links; }
var findMyLinks = function () {
    var valid_links_regex = "example|assignment";
    var links = []
    $('a').each(function (k, v) {
        var re = new RegExp(valid_links_regex, 'ig');
        if ($(this).text().match(re)) {
            links.push($(this));
        }
    });
    return links;
}

 

Total
0
Shares
Previous Post

GeForce GTX graphics card DVI-VGA display converter doesn’t work – FIX

Next Post

Flat UI – Simple HTML tabs without jQuery or any other library

Related Posts