Yesterdayโs Dynamic Javascript and the YouTube Embedded API Tutorial got us thinking about dynamic Javascript, and today we put that concept through its paces by writing another incarnation of the Tic Tac Toe (or Noughts and Crosses) game weโve written a few versions of now. We think this approach of taking a simple concept for a web application and rewriting it in different ways is instructive, and you learn quite a bit doing this, we think. We think in this respect, though, that because things can be deadends in I.T. you should pick simple concepts as the ones you tackle in this way. Even so, we find different ways each time to code the logic of Tic Tac Toe, let alone the changes in coding practices we are exploring each time.
Todayโs โdynamic Javascriptโ coding involved the use of the Javascript โฆ
โฆ timer method to give the web application a chance to display the webpage between the โJavascript writes more dynamic Javascriptโ automated additions to the webpageโs client logic.
You will see, examining the code, that you could have performed the same logic with different approaches. If so, good, that is you recognising where you can use one technique or another at various places within the web application client logic. The point is, that you should learn early on that there are very often more than one way to solve any programming problem. Not always, but often. Practising lots of different techniques could stand you in good stead when you come across a problem where your new found knowledge fits purposes perfectly.
Itโs not popular in many circles, but we often find Javascript โฆ
eval()
โฆ invaluable to extend โthe one to manyโ Javascript coding logics, but โevalโ didnโt feature that way today, as much as it did with yesterdayโs Dynamic Javascript and the YouTube Embedded API Tutorial.
Feel free to try the HTML and Javascript initially_andthenhtmlโs code will be more food for thought, that you can test for yourself at this live
run link.
Previous relevant Dynamic Javascript and the YouTube Embedded API Tutorial is shown below.
Webpages without Javascript are generally pretty static and boring. Javascript is that dynamic client addition to webpage functionality, but perhaps you only think of it as that statically written part of the webpage unable to be reloaded into effect after that initial webpage load. Well, that is not taking into account Javascript such as โฆ
<script>
var tag = document.createElement('script');
tag.src = "https://www.youtube.com/iframe_api";
var firstScriptTag = document.getElementsByTagName('script')[0];
firstScriptTag.parentNode.insertBefore(tag, firstScriptTag);
</script>
โฆ taken from the excellent YouTube IFrame Player API we really like to use around here to embed and control YouTube videos embedded into an HTML iframe element.
In todayโs small extension of that we load nine such HTML iframe embedded YouTube videos into a 3ร3 grid. We resisted the previous Brady Bunch usage of such an arrangement (perhaps youโll be sad to hear?!) in favour of showing you a โcollageโ of video snippets from one of my favourite films ever, Mr Smith Goes to Washington.
We hope the HTML and Javascript dynamic_jshtmlโs code will be food for thought, that you can test for yourself at this live
run link.
If this was interesting you may be interested in this too.
If this was interesting you may be interested in this too.
2 Responses to Dynamic Javascript Tic Tac Toe Game Tutorial