Link Button Webanimator

Join us! Share tips and solutions with WebAnimator users around the world.
Locked
Binho
Posts: 4

Link Button Webanimator

Post by Binho »

how do I open one link in the same tab using the button created with webanimator?

ICD
Posts: 200

Post by ICD »

Hello,

It's not possible to load the target into the same page when using the "Load URL" action for a button. One way to accomplish that would be to create a custom JavaScript function instead and call that on click.

The content of that function could look like this:

location.replace("http://www.google.com");

Locked