How to create a Pop up on a selected variable

Sean Kingston1
Giga Contributor

Looking for a Client Script that will Popup a message on a selected variable.. If "No" is selected then a set of instructions will pop up

6 REPLIES 6

Abhinay Erra
Giga Sage

Sean,



  You can write an onChange client script on that variable and put this in there



if(newValue=="No"){


alert("your instructions goes here");


}


Sean Kingston1
Giga Contributor

Thanks I will try that.