Skip to main content

Open webpage

The Open webpage action opens a URL in a new browser tab when an event occurs.

Configuration

ParameterDescriptionDefault
URLThe webpage URL to open
DebounceTime in milliseconds to wait before executing the actionEmpty (no delay)
ToolJet - Action reference - Open webpage

Triggering via RunJS

This action isn't exposed through the actions.* RunJS API. Since a RunJS query can run arbitrary JavaScript, you can open a webpage directly with the browser's native API instead:

window.open('<url>', '_blank');
info

For a full quick-reference of all actions' RunJS syntax, see Run Actions from RunJS.