var str = document.getElementsByTagName('body');
str.toString();
var substring = "raju";
if(str.includes(substring)){
alert('found');
}
i want to parse the html as string for a particular website and checking for substring in that html code. But it not working, please help!