I have this code on my site to find a specific hyperlinked text and hide, but this is removing the hyperlinks on all other texts, i do not want to do that,can someone tell me how do hide the specific text only without removing the hyper link on others?
this is my code
$('.myname').each(function() {
var text = $(this).text();
$(this).text(text.replace('rob-blank', ''));
thanks