13.Redirect to another page

This feature allows user redirect from one page to another one.

Use this code:

<script>setTimeout(() => window.location.href = 'https://webcake.io/', 3000)</script>

Which includes:

  • URL that you want to redirect, ex: http://webcake.io/

  • Time from entering the page to red, ex: 3000

Add this code to your page

Feature used when some links start using link open event

Use to code

<script>setTimeout(() => window.open('https://webcake.io', '_self'), 10)</script>

Last updated