Reputation: 135
Is there any javascript code where I can use search form to search on website html pages. I want to search all the static text that I have on my html pages, which should exclude html tags and php code etc. Search result should show with the page link and searched text.
Upvotes: 1
Views: 2608
Reputation: 1249
JavaScript runs in client's browser so, with JavaScript, you can only search in the HTML of currently displayed page and other html pages on the server can not be accessible with JavaScript.
Upvotes: 1