Introduction

  • Normally the project name will be the DT title.
  • The DT title is the text that appears in the browser tab.
  • However, its possible to override this using a script
  • You could change the title at any time. For example node by node.
  • In this example we will change the title for the whole DT

Step-by-Step Instructions:

In the DT level scripts:

Step 1: Create a new script above the closing </head> section

Step 2: Simply copy this code:

<script>   
  setInterval(function() { document.title = "Some new title text"; }, 1000);
</script> 

Change the text in double quotes to be your new title.