Expand my Community achievements bar.

Join us for the next Community Q&A Coffee Break on Tuesday April 23, 2024 with Eric Matisoff, Principal Evangelist, Analytics & Data Science, who will join us to discuss all the big news and announcements from Summit 2024!
SOLVED

DTM: Custom Condition

Avatar

Level 2
Level 2

I can't find any documentation about custom conditions ANYWHERE (typical!), other than the question mark in the setup ("Enter a script that must evaluate true/false to control whether this rule executes.").  What exactly does the format of this have to be?  I have the following entered:

document.getElementsByClassName('errorMessageContainer').length!=0

This evaluates to TRUE, but the rule is not firing. Does this need to include something else? I've tried various other ways and can't get anything to work.  Anyone have any ideas?  

1 Accepted Solution

Avatar

Correct answer by
Level 5

You have to use 'return' like you would in a javascript function. 

View solution in original post

2 Replies

Avatar

Correct answer by
Level 5

You have to use 'return' like you would in a javascript function. 

Avatar

Level 2
Level 2

Well, I thought I had already tried this option and it hadn't worked...but now it is!

You need to put the full "if" in there and return true, not just a simple statement that evaluates as true.

Thanks!!