please help me with October CMS Code - Page or Partial, how to use them with W3.JS.
W3.JS Display HTML Data {{variable}} in Octobercms
{{ }} this transcription use OctoberCMS for your own data
But W3.JS Display HTML Data use the same transcription
https://www.w3schools.com/w3js/w3js_display.asp
<div id="id01">
{{firstName}} {{lastName}}
</div>
<script>
var myObject = {"firstName" : "John", "lastName" : "Doe"};
w3.displayObject("id01", myObject);
</script>
it doesn't work
thank you for your help
Vasek