Hi,
I would like to define 2 alert condition which will trigger one after the other in the exact order.
I defined:
alertcondition(condition1 == 1)
alertcondition(condition2==2)
and added matching alerts:
alert(2)
alert(1)
however they are triggering in the wrong order
2
1
is there a way to add priority to alertcondition in order to force it triggering first alert1 and then alert2?
if not, how can I force 1 to be trigger before 2?
thanks