HTML Themed Supervision Second Genericization Tutorial
โœ‚๐Ÿƒ๐Ÿพโ€โ™€๏ธ๐Ÿƒ๐Ÿผโ€โ™‚๏ธ
๐Ÿ“–

HTML Themed Supervision Second Genericization Tutorial

HTML Themed Supervision Second Genericization Tutorial

Some days ago we left off with HTML/Javascript Themed Supervision Primer Tutorial having a pretty hardcoded feel to it, as a web application gathering together other web applications under the concept of โ€œESL Ideasโ€. Then yesterday we started on our โ€œgenericizationโ€ drive involving the introduction of external Javascript and the address bar URL GET parameters, as dynamic controllers of web application content.

Yesterday stayed within the realms of client side HTML and Javascript (and CSS), and today, we stay there for some more functionality on the theme of โ€œinteractivityโ€.

Weโ€™ve talked before at this blog about the wonders of Javascript โ€ฆ document.write(prompt([wording],[default])); โ€ฆ last time was with HTML/Javascript Clairvoyance Tester Mobile Tutorial โ€ฆ and today we revisit that โ€œwonderโ€ โ€ฆ wonderful!

The logic with our purely Javascript DOM extra functionality is that, as you may remember from HTML/Javascript Themed Supervision Primer Tutorial โ€ฆ way back when โ€ฆ just plain old document.write([someHTML]) helped us have a feel with our HTML and Javascript that we are a โ€œbitโ€ โ€ฆ just a tad โ€ฆ like a server side language like PHP โ€ฆ delaying the output of HTML until ready. Well, now, today, ponder โ€ฆ



document.write(itdepends(outhtml));

โ€ฆ and the Javascript itdepends function โ€ฆ



function itdepends(inh) {

var ct='Change this', cellno=1, pregs, gs, hw='', cellmemno=1, outh=inh, cells, kc, ic, thisbutton, precells, jc=0, lastsuff='', postcell, suff='<br>', xlast=' setTimeout(andthen, 200); ', zlast='', lastc='';

var inask=location.search.split('ask=')[1] ? location.search.split('ask=')[1].split('&')[0] : ' ';

if (inask != ' ') {

cells=inh.split('</h1>');

thisbutton=cells[0] + '</h1>';

dis=thisbutton.replace(/"/g, "' + String.fromChar(34) '");

lastc="<scr" + "ipt type='text/javascript'> var dis" + jc + "=" + '"' + dis + '"' + "; document.write(prompt(" + '"' + "Change this Theme and/or its dropdown?" + '"' + ",dis" + jc + ")); </scr" + "ipt>";

outh=outh.replace(thisbutton, lastc);

lastc='';

cells=inh.split('</td>');

for (ic=0; ic<cells.length; ic++) {

if (cells[ic].indexOf('</button>') != -1) {

precells=cells[ic].split('</button>');

for (kc=0; kc<precells.length; kc++) {

if (precells[kc].replace('</div>','').indexOf('<button') != -1) {

postcell=(' ' + precells[kc]).split('<button');

thisbutton='<button' + postcell[1] + '</button>';

suff='';

ct='Change this ' + hw + 'web application button ' + cellmemno + ' (of ' + eval(-1 + precells.length) + ') in cell ' + cellno + ' of 9 ... nothing is allowed';

if (outh.indexOf(thisbutton + '<br>') != -1) {

suff='<br>';

thisbutton += suff;

lastsuff=suff;

} else if (outh.indexOf(thisbutton + '<') == -1) {

gs=outh.split(thisbutton);

pregs=gs[1].split('<');

suff=pregs[0];

thisbutton += suff;

lastsuff=suff;

} else {

ct='Change this ' + hw + 'web application button ' + cellmemno + ' (of ' + cellmemno + ') in cell ' + cellno + ' of 9 ... nothing is allowed ... to add more, best delimiter between buttons is ' + lastsuff + ' ';

}

jc++;

dis=thisbutton.replace(/"/g, "' + String.fromChar(34) '");

lastc="<scr" + "ipt type='text/javascript'> var dis" + jc + "=" + '"' + dis + '"' + "; document.write(prompt(" + '"' + ct + "?" + '"' + ",dis" + jc + ")); </scr" + "ipt>";

outh=outh.replace(thisbutton, lastc);

if (suff != '') {

cellmemno++;

} else {

cellno++;

cellmemno=1;

lastsuff='';

if (cellno == 5) {

hw='hidden ';

} else {

hw='';

}

}

}

}

}

}

}

if (lastc != '') outh=outh.replace(lastc, lastc.replace('</scr', xlast + '</scr'));

return outh;

}

โ€ฆ voila โ€ฆ document.write([someHTML]) is usefully nesting document.write([someReworkedHTML]) โ€ฆ was wondering when this โ€œonion of the 4th dimensionโ€ would come.

Once again, have a look at our HTML and Javascript and CSS programming source code you could call middle_interestโšซhtml (changed from before as per thislink) supervising the external Javascript you could call middle_interestโšซjs (changed from before as per thislink) and/or try a โ€ฆ



Previous relevant HTML Themed Supervision First Genericization Tutorial is shown below.

HTML Themed Supervision First Genericization Tutorial

HTML Themed Supervision First Genericization Tutorial

Some days ago we left off with HTML/Javascript Themed Supervision Primer Tutorial having a pretty hardcoded feel to it, as a web application gathering together other web applications under the concept of โ€œESL Ideasโ€.

We saw this application then, as now, as being a great candidate to take you through some genericization ideas.

Todayโ€™s genericization ideas stay within the realm of client side web application functionality, only โ€ฆ the reason the blog title mentions โ€œFirstโ€. We go over some similar concepts as to when we presented PHP/HTML with External Javascript Slotting In Tutorial where both โ€ฆ

  1. document.head.innerHTML HTML script tag GET properties and/or overworked by
  2. document.URL GET properties

So we allow the web application โ€œthemeโ€ and the three HTML button aspects described by, again โ€ฆ

  1. a label (that is displayed and is that HTML button elementโ€™s innerHTML property)
  2. a title containing a URL to reach the โ€œtutorial web applicationโ€ as above
  3. an onclick event, the function called passing across a this variable pointing at the HTML button element and a URL to reach the โ€œtutorial (itself)โ€ as above

โ€ฆ can now be dynamically controlled by the user in the last of those two ways described (way) above, and by the writer of the software with the document.head.innerHTML approach.

And there is more to come involving possible interactivity and serverside functionality. Hope you get some good ideas from this thread of postings.

In the meantime, again, have a look at our HTML and Javascript and CSS programming source code you could call middle_interestโšซhtml (changed from before as per thislink) supervising the new external Javascript you could call middle_interestโšซjs and/or try a โ€ฆ


Previous relevant HTML/Javascript Themed Supervision Primer Tutorial is shown below.

HTML/Javascript Themed Supervision Primer Tutorial

HTML/Javascript Themed Supervision Primer Tutorial

Today we want to show another โ€œoverlayโ€ variation on HTML and Javascript supervision of other web applications, in an HTML iframe element. We make the look of this supervisor be a central โ€œcoreโ€ child web application that is either a โ€ฆ

  • tutorial web application โ€ฆ or โ€ฆ
  • tutorial (itself)

โ€ฆ displayed in a middle โ€œoverlayโ€ HTML iframe element.

That middle โ€œoverlayโ€ HTML iframe elementโ€™s content is controlled by (the clicking of) HTML button elements spread around it, that position themselves as far away from the โ€œmiddleโ€ part as they can (so that the โ€œmiddleโ€ part can be as big as it can), in HTML td (cell) elements. Three pieces of information are associated with these buttons, namely โ€ฆ

  1. a label (that is displayed and is that HTML button elementโ€™s innerHTML property)
  2. a title containing a URL to reach the โ€œtutorial web applicationโ€ as above
  3. an onclick event, the function called passing across a this variable pointing at the HTML button element and a URL to reach the โ€œtutorial (itself)โ€ as above

That all sounds a pretty generic plan, but today we have a โ€œPrimerโ€ tutorial, as proof of concept, which hardcodes all the HTML button element features as above on the theme (which is contained in a global variable called โ€œthemeโ€) of ESL. We chose this โ€œthemeโ€ because we have quite a varied lineup that would benefit from a web application coalescing some of the ideas weโ€™ve been developing here at this blog.

Over time, you can be pretty sure weโ€™ll be genericising all this in a variety of directions. We hope you stick around to see this.

By the way, the CSS โ€œoverlayโ€ usual suspects come into play again today, the main two being โ€ฆ

โ€ฆ and we use the Window.getComputedStyle Javascript functionality to help position that middle โ€œoverlayโ€ HTML iframe element, as well as CSS float and vertical-align properties. Again, as was the case with Landing Page Mobile Tutorial, we use Javascript that performs a little like a server language like PHP, holding back on the production of the HTML via that HTML being defined in a variable capable of being modified and โ€œtweakedโ€, until ready to release via the use of the Javascript DOM document.write([that variable]) method, used to set off the bulk of the web page rendering at the web browser.

In the meantime, have a look at our HTML and Javascript and CSS programming source code you could call middle_interestโšซhtml and/or try a liveโœ‚run.

If this was interesting you may be interested in this too.


If this was interesting you may be interested in this too.


If this was interesting you may be interested in this too.

This entry was posted in eLearning, ESL, Tutorials and tagged , , , , , , , , , , , , , , , , , , . Bookmark the permalink.

9 Responses to HTML Themed Supervision Second Genericization Tutorial

Leave a Reply

Your email address will not be published. Required fields are marked *