dmartens Posted December 5, 2002 Posted December 5, 2002 I'm puzzled by this question. I'm trying to create a response page that highlights or makes bold the find criteria everytime it occurs in the body. So a search on the word "horses" would return: There are many [color:"red"]horses in that field over there. Any ideas on how to accomplish this?
Garry Claridge Posted December 6, 2002 Posted December 6, 2002 Here is some Javascrip you can use to do the job: <script> oldtext = "[FMP-Field:mytextfield]"; [FMP-CurrentFind] theword = "[FMP-FindValueItem]"; [/FMP-CurrentFind] var pattern = new RegExp(theword,"g"); newtext = oldtext.replace(pattern,"<font color='red'>" + theword + "</font>"); document.write(newtext); </script> A number of ways exist to assign the variable "theword" with the search value. All the best. Garry
Newbies Steve Daines Posted June 5, 2003 Newbies Posted June 5, 2003 I am looking for the same sort of thing but to colour up a field depending on it contents, Is that possible IE File Name "Status" Search returns "Complete" in Red Saerch returns "Not Complete" in Blue
Recommended Posts
This topic is 7834 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now