When we checked the Radio Button Want to redirect to other page in other window

Asish1
Tera Contributor

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

1 ACCEPTED SOLUTION

Aman Kumar S
Kilo Patron

@Asish 

Have a onChange client script on the checkbox add below lines

  if (newValue == "true") {
        var url = "https://community.servicenow.com/"
	
         top.window.open(url);
    }
Best Regards
Aman Kumar

View solution in original post

12 REPLIES 12

Hi @Aman Kumar 

Thanks for the Reply !!

It is Working but it is working for every radio button for that question but I need only for one radio button...

 

Thanks,

Asish

How have you written the client script, I hope it is an onChange client script on the checkbox

Best Regards
Aman Kumar

Is your issue resolved?


Feel free to mark correct, if your issue has been resolved, so it ends up in solved queue.

Will be helpful for others looking for the similar query.

Best Regards
Aman Kumar