- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2023 12:17 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2023 09:12 AM
Create a UI Action with the Client checkbox checked, also add the below function name in the OnClick field.
and write code something like this:
function shippingRedirect(){
var url = 'https://google.com';
top.window.open(url,'_blank') ;
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2023 09:12 AM
Create a UI Action with the Client checkbox checked, also add the below function name in the OnClick field.
and write code something like this:
function shippingRedirect(){
var url = 'https://google.com';
top.window.open(url,'_blank') ;
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2023 09:05 PM
Yes, that solution is working for my side.