Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×

Highlight or bold search criteria


dmartens

This topic is 7794 days old. Please don't post here. Open a new topic instead.

Recommended Posts

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?

Link to comment
Share on other sites

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

Link to comment
Share on other sites

  • 5 months later...

This topic is 7794 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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.