Use Windows to find text in javascript?
I suppose this might be more of an "other software" issue than a javascript issue... so let me know if you think it should be moved...
In webpages I use javascript to hide email addresses from bots. I want to search the files of the websites for these javascript uses so I can change the email address in some of them...
When I use Windows to search the folder that all the .html files are in Windows does not find text that is used in javascript.
How can I search my files for all uses of the javascript?
If it helps, here's an example:
Code:
<script language="JavaScript" type="text/javascript">
<!--
document.write("<A HREF='mailto:"+"[email protected]"+"'>"+"Contact"+" Rick Jackson"+"</A>");
//-->
</script>
Thanks!