JSFiddle - React, Tailwind, and code Playground
by Drath
HTML
<a href="/#/pony/">Test</a>
JavaScript
function addslashes(str) {
str=str.replace(/\\/g,'\\\\');
str=str.replace(/\'/g,'\\\'');
str=str.replace(/\"/g,'\\"');
str=str.replace(/\0/g,'\\0');
return str;
}
$(function() {
hashTag = addslashes("/#/pony/"); //make this your hashTag variable
var test = $("a[href*='"+ hashTag +"']");
console.log(test);
});