Link to home
Start Free TrialLog in
Avatar of mrmad1966
mrmad1966

asked on

Search multiple pdf docs

Folks, Id really appreciate thoughts and advice here.
I currently have a website that has multiple links. Each link will (when clicked) use a simple javascript function:-
 function callurl(url) {
   document.getElementById('myFrame').style.visibility="visible";
   document.getElementById('myFrame').src = url;
   }
This calls a pdf file from a directory & loads it into the 'myFrame' div. Now I have been asked if I can add a search function. The intention would be that this search would search all of the pdfs for a specific word..So my questions are:-
 How easy would this be ?
What method would you use ?
Thank you
ASKER CERTIFIED SOLUTION
Avatar of Jason C. Levine
Jason C. Levine
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of mrmad1966
mrmad1966

ASKER

Not sure this would work as the website in question sits on a private intranet ! But will look into this..
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thank you !