I have the need to build a JavaScript search engine that just indexes the content between the TITLE tags. What I did to do this was only checked 'Title of page' in the 'What to index' section then ran the indexing. I thought that this would allow me to use the search form to search on any page title however have found that not to be the case. If the zoom_titles.js has this line:
Should I be able to search on the word 'wellhead' and get a result? I currently do not, however if I search on 'Glossary: Term' I do get the result.
Code:
titles = new Array("Glossary: Term wellhead");
Comment