Using Javascript how can I write this:
if Time1 > 0 and Time2 = 0 then
msgbox
Printable View
Using Javascript how can I write this:
if Time1 > 0 and Time2 = 0 then
msgbox
I think. I could be wrong. Double check the doco listed in the sig below.Code:if (Time1 > 0 && Time2 == 0 ) {
alert("Foo");
}