All Collections
Tweaks&Hacks
Add JavaScript to the page
Add JavaScript to the page
Aleks avatar
Written by Aleks
Updated over a week ago

Would you like to make your page more interactive? You can do that with a help of JavaScript. There are several ways to add it to your page:

  • click on Page settings and select Add Scripts to add your code there;

  • another way is to add an HTML widget to the page and add your code there. It should be wrapped by <script> tag.

<script>
......
</script>

e.g.  You want your customers to see current date as a pop-up notification while opening your page, so you use this code:

<script>
  let d = new Date();
  alert("Today's date is " + d);
</script>

This is how it will look:

That's it! One last thing - JS effects will be shown on a published page only, it can't be seen in the editor itself.

Did this answer your question?