Say i have a json file called by "scene1.json", and i want the content to get printed on the html screen without server anything since i using mobile notepad app for testing html file and script.
- How to write the divs and their spans into json? Like of the content is
<section>
<div class="someclass" data-text="current_scene" value="1">
<span class="otherclass">Some paragraph</span>
</div>
</section>
all that normal html stuffs?
- How to get that all to get taken and printed into div in html that run normally in jQuery? Like what TAJS by Etienne Ott works. But i can’t understand how it all works.