How to fast-forward your VSL to the pitch moment and verify your page is working properly
How to fast-forward your VSL to the pitch moment and verify your page is working properly
In this article, we will show how to fast-forward your video to the pitch moment on your sales page, allowing you to validate whether all elements on the page are appearing and working as expected.
- On your page, open the browser console. You can do this in two ways:
💻 On Windows
- Right-click on the page and select “Inspect”
- Or press the F12 key
🍎 On MacBook
- Right-click on the page and select “Inspect”
- Or use the shortcut: Command + Option + I
- Go to the "Console" tab

- Executing the command
Paste the command below into the console:
document.querySelector("vturb-smartplayer").seek(3000);
- Adjust the pitch timing
- The value 3000 represents the time in seconds.
- You must replace this number with the exact moment when the pitch starts in your VSL.
Example:
If you want to skip to minute 22:47 of your video, you should calculate the following:
22 (minutes) x 60 = 1320.
Add the remaining seconds: 47.
Total: 1367. This is the number that should be used in your code.
document.querySelector("vturb-smartplayer").seek(1367);
After this process, you will be able to view your page at the pitch moment without having to wait for the exact timing!
Updated on: 04/20/2026
Thank you!
