How to create a Pop up on a selected variable

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-08-2016 08:18 AM
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

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-08-2016 08:23 AM
Sean,
You can write an onChange client script on that variable and put this in there
if(newValue=="No"){
alert("your instructions goes here");
}

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-08-2016 08:33 AM
Thanks I will try that.