Here goes:

  1. Text Tool: Create a Text Column with "Today's Date" in any font, style or format.
  2. Text Tool: Add the following Names to the selected Text: htmlblocktext & today (separately).
  3. Select Tool: Select the text object and then Utilities > Web Properties > Placeholder > HTML Code Insertion > HTML code (body), add:
    Code:
    <script>
      document.getElementById("today").innerHTML = Date().substr(4, 11);
    </script>
  4. Done.

Change the range of the substr parameters to extract more or less as you need; drop it altogether to get the full Date() value ... = Date();].

Example file: JS-Today.xar.

Acorn