I have written a php script that generates a list of links that match certain criteria.
I want the links to open in a new browser windows with selected words highlighted in the page.
Is there an easy way to do this? Note that this is for personal use only, so it can be a browser specific solution.
Edited to better answer question.
Use AJAX to load the page and then process the returned HTML.
I prefer using JQuery. Check out this tutorial for loading HTML from other pages.
http://css.dzone.com/articles/jquery-load-data-from-other-pa
After you get the data I think you can easily figure out how to parse it
The JQuery example from the link,: (not My code)
The page being loaded:
Note: please somebody let me know if I should not post code from another site, but instead only post a link. I do not wish to anger anyone. thanks.