- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-10-2022 11:03 PM
Hi,
We have 3 radio buttons in a form, whenever I checked the 3rd radio button then it should be redirected to a page in other window is it possible, if yes please help...
Thanks,
Asish
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-11-2022 02:36 AM
Have a onChange client script on the checkbox add below lines
if (newValue == "true") {
var url = "https://community.servicenow.com/"
top.window.open(url);
}
Aman Kumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-11-2022 01:59 AM
Hello Ashish
try top.window.location('your URL')
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-11-2022 02:31 AM
Hi
Thanks for the reply !!!
Tried this code but this one also not working.....
Thanks,
Asish
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-11-2022 02:46 AM
Then try
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-11-2022 12:31 AM
Hello Ashish,
you can use top.window.location('your URL') in your script
PLEASE MARK MY ANSWER CORRECT IF IT HELPS YOU

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-11-2022 02:36 AM
Have a onChange client script on the checkbox add below lines
if (newValue == "true") {
var url = "https://community.servicenow.com/"
top.window.open(url);
}
Aman Kumar