{"id":63033,"date":"2024-03-16T03:01:57","date_gmt":"2024-03-15T17:01:57","guid":{"rendered":"http:\/\/www.rjmprogramming.com.au\/ITblog\/?p=63033"},"modified":"2024-03-15T20:54:47","modified_gmt":"2024-03-15T10:54:47","slug":"linked-sentence-story-sharing-tutorial","status":"publish","type":"post","link":"https:\/\/www.rjmprogramming.com.au\/ITblog\/linked-sentence-story-sharing-tutorial\/","title":{"rendered":"Linked Sentence Story Sharing Tutorial"},"content":{"rendered":"<div style=\"width: 230px\" class=\"wp-caption alignnone\"><a target=_blank href=\"https:\/\/www.rjmprogramming.com.au\/HTMLCSS\/linked_sentence_creator.html\"><img decoding=\"async\" style=\"border: 15px solid pink;\" alt=\"Linked Sentence Story Sharing Tutorial\" src=\"http:\/\/www.rjmprogramming.com.au\/HTMLCSS\/linked_sentence_sharing.jpg\" title=\"Linked Sentence Story Sharing Tutorial\"  style=\"float:left;\" \/><\/a><p class=\"wp-caption-text\">Linked Sentence Story Sharing Tutorial<\/p><\/div>\n<p>Today&#8217;s work, adding some sharing functionality, onto yesterday&#8217;s <a title='Linked Sentence Story Primer Tutorial' href='#lsspt'>Linked Sentence Story Primer Tutorial<\/a>&#8216;s &#8220;proof of concept&#8221; work with our new &#8220;Linked Sentence Creator&#8221; web application was made that much easier now that &#8230;<\/p>\n<ul>\n<li>&#8220;mailto:&#8221; emailing &#8220;a&#8221; links &#8230; and &#8230;<\/li>\n<li>&#8220;sms:&#8221; SMS &#8220;a&#8221; links<\/li>\n<\/ul>\n<p> &#8230; can incorporate hashtagging methodologies, with our &#8220;midair feeling&#8221; code &#8230;<\/p>\n<p><code><br \/>\n  function doemail() {<br \/>\n  var azx=document.getElementById('aemail');<br \/>\n  if (!azx) { azx=document.createElement(\"a\"); }<br \/>\n  document.body.appendChild(azx);<br \/>\n  azx.style = \"display: none\";<br \/>\n  azx.id = 'aemail';<br \/>\n  azx.href = 'mailto:' + inidea + '?subject=' + encodeURIComponent('My Linked Sentence Story') + '&body=' + encodeURIComponent(document.URL.split('?')[0].split('#')[0] + '#span=' + encodeURIComponent(document.getElementById('span0').innerHTML));<br \/>\n  azx.click();<br \/>\n  return '';<br \/>\n  }<br \/>\n  <br \/>\n  function dosms() {<br \/>\n  snum=('' + prompt('Please enter SMS number to send to.', snum)).replace(\/^null\/g,'');<br \/>\n  if (snum.indexOf('@') != -1) {<br \/>\n    return doemail(snum);<br \/>\n  } else if (snum.trim() != '') {<br \/>\n    var azx=document.getElementById('asms');<br \/>\n    if (!azx) { azx=document.createElement(\"a\"); }<br \/>\n    document.body.appendChild(azx);<br \/>\n    azx.id = 'asms';<br \/>\n    azx.href = 'sms:' + snum + '&body=' + encodeURIComponent(document.URL.split('?')[0].split('#')[0] + '#span=' + encodeURIComponent(document.getElementById('span0').innerHTML));<br \/>\n    azx.click();<br \/>\n  }<br \/>\n  return '';<br \/>\n  }<br \/>\n<\/code><\/p>\n<p> &#8230; so that even if there is a long Linked Sentence Story (perhaps) created we have &#8230;<\/p>\n<ul>\n<li>less to worry about this sharing functionality working &#8230; as well as &#8230;<\/li>\n<li>not needing to involve PHP (mail server) functionality &#8230; as well as &#8230;<\/li>\n<li>the email actually sent by the emailer (with their email address) explicitly <font size=1>(the opposite being one of the symptoms of Phishing)<\/font><\/li>\n<\/ul>\n<p>A few nuances with the link processing, for non-mobile, add an improvement &#8230;<\/p>\n<p><code><br \/>\n  function analyze(athis) {<br \/>\n    var retval=true, wincont='';<br \/>\n    if (('' + athis.href + '#').substring(0,1) != '#') {<br \/>\n    athisih=athis.innerHTML;<br \/>\n    if (!navigator.userAgent.match(\/Android|BlackBerry|iPhone|iPad|iPod|Opera Mini|IEMobile\/i) && ('' + location.hash).indexOf('=') != -1) {<br \/>\n      var arect=athis.getBoundingClientRect();<br \/>\n      if (wo) {<br \/>\n        if (!wo.closed) {<br \/>\n          wo.close();<br \/>\n          wo=null;<br \/>\n        }<br \/>\n      }<br \/>\n      var proposedw=eval(eval('' + screen.width) - eval('' + arect.right));<br \/>\n      var proposedh=eval(eval('' + screen.height) - eval('' + arect.bottom));<br \/>\n      \/\/alert('' + proposedw + ',' + proposedh + ' for ' + athis.href + ' ... ' + ('top=' + arect.bottom).split('.')[0] + (',left=' + arect.right).split('.')[0] + (',width=' + proposedw).split('.')[0] + (',height=' + proposedh).split('.')[0]);<br \/>\n      \/\/try {<br \/>\n      if (proposedw &gt; 0 && proposedh &gt; 0 && 5 == 5) {<br \/>\n      \/\/wo=window.open(athis.href,'_blank', ('top=' + arect.bottom).split('.')[0] + (',left=' + arect.right).split('.')[0] + (',width=' + proposedw).split('.')[0] + (',height=' + proposedh).split('.')[0]);<br \/>\n      thirdparam=('top=' + arect.bottom).split('.')[0] + (',left=' + arect.right).split('.')[0] + (',width=' + proposedw).split('.')[0] + (',height=' + proposedh).split('.')[0];<br \/>\n      } else if (proposedw &gt; 0 && 5 == 5) {<br \/>\n      \/\/wo=window.open(athis.href,'_blank', ('top=' + arect.bottom).split('.')[0] + (',left=' + arect.right).split('.')[0] + (',width=' + proposedw).split('.')[0]);<br \/>\n      thirdparam=('top=' + arect.bottom).split('.')[0] + (',left=' + arect.right).split('.')[0] + (',width=' + proposedw).split('.')[0];<br \/>\n      } else if (proposedh &gt; 0 && 5 == 5) {<br \/>\n      \/\/wo=window.open(athis.href,'_blank', ('top=' + arect.bottom).split('.')[0] + (',left=' + arect.right).split('.')[0] + (',height=' + proposedh).split('.')[0]);<br \/>\n      thirdparam=('top=' + arect.bottom).split('.')[0] + (',left=' + arect.right).split('.')[0] + (',height=' + proposedh).split('.')[0];<br \/>\n      } else if (5 == 5) {<br \/>\n      \/\/wo=window.open(athis.href,'_blank', ('top=' + arect.bottom).split('.')[0] + (',left=' + arect.right).split('.')[0]);<br \/>\n      thirdparam=('top=' + arect.bottom).split('.')[0] + (',left=' + arect.right).split('.')[0];<br \/>\n      }<br \/>\n      \/\/alert(('' + athis.href) + ' in ' + athis.outerHTML);<br \/>\n      if (document.URL.split('\/\/')[1].split('\/')[0].toLowerCase().indexOf('rjmprogramming.com.au') != -1 && ('' + athis.href).indexOf('youtube.com\/watch?v=') != -1) {<br \/>\n         var athishref=document.URL.split(':')[0] + ':\/\/www.rjmprogramming.com.au\/HTMLCSS\/karaoke_youtube_api.htm?youtubeid=' + ('' + athis.href).split('youtube.com\/watch?v=')[1].split('&')[0].split('#')[0] + '&youtube_duration=11202.221&email=&email=&emoji=on&c0=on&i0=0&j0=11202.221&i1=&j1=&i2=&j2=&i3=&j3=&i4=&j4=&i5=&j5=&i6=&j6=&i7=&j7=&i8=&j8=&i9=&j9=&i10=&j10=&i11=&j11=&i12=&j12=&i13=&j13=&i14=&j14=&i15=&j15=&i16=&j16=&i17=&j17=&i18=&j18=&i19=&j19=&i20=&j20=&i21=&j21=&i22=&j22=&i23=&j23=&i24=&j24=&i25=&j25=&i26=&j26=&i27=&j27=&i28=&j28=&i29=&j29=';<br \/>\n         wincont='&lt;html&gt;&lt;body&gt;&lt;iframe width=\"420\" height=\"315\" src=\"https:\/\/www.youtube.com\/embed\/' + ('' + athis.href).split('youtube.com\/watch?v=')[1].split('&')[0].split('#')[0] + '\" frameborder=\"0\" allowfullscreen&gt;&lt;\/iframe&gt;&lt;br&gt;&lt;iframe src=\"' + athishref + '\" style=\"width:100%;height:800px;\"&gt;&lt;\/iframe&gt;&lt;\/body&gt;&lt;\/html&gt;';<br \/>\n         athis.href=document.URL.split(':')[0] + ':\/\/www.rjmprogramming.com.au\/HTMLCSS\/karaoke_youtube_api.htm?youtubeid=' + ('' + athis.href).split('youtube.com\/watch?v=')[1].split('&')[0].split('#')[0] + '&youtube_duration=11202.221&email=&email=&emoji=on&c0=on&i0=0&j0=11202.221&i1=&j1=&i2=&j2=&i3=&j3=&i4=&j4=&i5=&j5=&i6=&j6=&i7=&j7=&i8=&j8=&i9=&j9=&i10=&j10=&i11=&j11=&i12=&j12=&i13=&j13=&i14=&j14=&i15=&j15=&i16=&j16=&i17=&j17=&i18=&j18=&i19=&j19=&i20=&j20=&i21=&j21=&i22=&j22=&i23=&j23=&i24=&j24=&i25=&j25=&i26=&j26=&i27=&j27=&i28=&j28=&i29=&j29=';<br \/>\n      } \/\/ 202.221<br \/>\n      \/\/alert(thirdparam + ' ... ' + wincont);<br \/>\n      if (athis.href.indexOf('wikipedia.org') == -1 && athis.href.indexOf(document.URL.split('\/\/')[1].split('\/')[0].replace(\/^www\\.\/g, '')) == -1) {<br \/>\n         thirdparam='';<br \/>\n      }<br \/>\n      \/\/alert(thirdparam + ' .+. ' + athis.href);<br \/>\n      \/\/} catch(reytre) {<br \/>\n      \/\/alert(0);<br \/>\n      \/\/}<br \/>\n     \/\/ if (wo) {<br \/>\n     \/\/ alert(1);<br \/>\n     \/\/   if (wo.closed) {<br \/>\n     \/\/ alert(11);<br \/>\n     \/\/     wo=null;<br \/>\n     \/\/   } else {<br \/>\n     \/\/  alert(111);<br \/>\n     \/\/  }<br \/>\n     \/\/ }<br \/>\n      if (!wo) {<br \/>\n      if (!navigator.userAgent.match(\/Android|BlackBerry|iPhone|iPad|iPod|Opera Mini|IEMobile\/i) && ('' + location.hash).indexOf('=') != -1 && thirdparam != '') {<br \/>\n      if (wincont != '') {<br \/>\n      wo=window.open('','_blank', thirdparam);<br \/>\n      wo.document.write(wincont);<br \/>\n      setTimeout(function(){ wo.document.title=athisih; }, 3000);<br \/>\n      } else {<br \/>\n      wo=window.open(athis.href,'_blank', thirdparam); \/\/, ('top=' + arect.bottom).split('.')[0] + (',left=' + arect.right).split('.')[0]);<br \/>\n      setTimeout(function(){ wo.document.title=athisih; }, 3000);<br \/>\n      }<br \/>\n      } else {<br \/>\n      if (wincont != '') {<br \/>\n      wo=window.open('','_blank');<br \/>\n      wo.document.write(wincont);<br \/>\n      setTimeout(function(){ wo.document.title=athisih; }, 3000);<br \/>\n      } else {<br \/>\n      wo=window.open(athis.href,'_blank');<br \/>\n      setTimeout(function(){ wo.document.title=athisih; }, 3000);<br \/>\n      }<br \/>\n      }<br \/>\n      }<br \/>\n      lastahref=athis.href;<br \/>\n      lasta=athis;<br \/>\n      athis.href='#';<br \/>\n      setTimeout(putback, 2000);<br \/>\n      retval=false;<br \/>\n    }<br \/>\n    }<br \/>\n    return retval;<br \/>\n  }<br \/>\n<\/code><\/p>\n<p>It&#8217;s not just sharing that benefits from hashtagging.  We can place the email contents into the href attribute of an &#8220;a&#8221; element as below, to share with you what we did to create today&#8217;s <a target=_blank href=\"https:\/\/www.rjmprogramming.com.au\/HTMLCSS\/linked_sentence_sharing.jpg\">tutorial picture &#8230;<\/p>\n<div><a target=_blank title='Result of Work of Tutorial Picture' href='https:\/\/www.rjmprogramming.com.au\/HTMLCSS\/linked_sentence_creator.html#span=%3Ca%20onclick%3D%22return%20analyze(this)%3B%22%20ontouchstart%3D%22event.stopPropagation()%3B%20event.preventDefault()%3B%20modifydothis(this)%3B%20%22%20oncontextmenu%3D%22event.stopPropagation()%3B%20%20%20modifydothis(this)%3B%20%20%22%20data-title%3D%22%22%20id%3D%22a0%22%20href%3D%22https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DjX6kn9_U8qk%22%20target%3D%22_blank%22%20title%3D%22Linking%20to%20https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DjX6kn9_U8qk%22%3EThe%20rain%20%3Ca%20onclick%3D%22return%20analyze(this)%3B%22%20id%3D%22a1%22%20target%3D%22_blank%22%20ontouchstart%3D%22event.stopPropagation()%3B%20event.preventDefault()%3B%20modifydothis(this)%3B%20%22%20oncontextmenu%3D%22event.stopPropagation()%3B%20%20%20modifydothis(this)%3B%20%20%22%20title%3D%22Linking%20to%20https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DhnJrbRBhzFU%22%20href%3D%22https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DhnJrbRBhzFU%22%3Ein%20Spain%20%3Ca%20onclick%3D%22return%20analyze(this)%3B%22%20id%3D%22a2%22%20target%3D%22_blank%22%20ontouchstart%3D%22event.stopPropagation()%3B%20event.preventDefault()%3B%20modifydothis(this)%3B%20%22%20oncontextmenu%3D%22event.stopPropagation()%3B%20%20%20modifydothis(this)%3B%20%20%22%20title%3D%22Linking%20to%20https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3Di9K3NCMpDO8%22%20href%3D%22https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3Di9K3NCMpDO8%22%3Efalls%20mainly%20%3Ca%20onclick%3D%22return%20analyze(this)%3B%22%20id%3D%22a3%22%20target%3D%22_blank%22%20ontouchstart%3D%22event.stopPropagation()%3B%20event.preventDefault()%3B%20modifydothis(this)%3B%20%22%20oncontextmenu%3D%22event.stopPropagation()%3B%20%20%20modifydothis(this)%3B%20%20%22%20title%3D%22Linking%20to%20https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DmO-wtfbDHac%22%20href%3D%22https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DmO-wtfbDHac%22%3Eon%20the%20plain.%3C%2Fa%3E%3C%2Fa%3E%3C%2Fa%3E%3C%2Fa%3E%20'>Result of Work of Tutorial Picture<\/a><\/div>\n<p><\/p>\n<p> &#8230; in <a target=_blank href=\"https:\/\/www.rjmprogramming.com.au\/PHP\/Geographicals\/diff.php?one=https:\/\/www.rjmprogramming.com.au\/HTMLCSS\/linked_sentence_creator.html-GETME\">a changed<\/a> <a target=_blank href=\"https:\/\/www.rjmprogramming.com.au\/HTMLCSS\/linked_sentence_creator.html-GETME\">linked_sentence_creator.html<\/a> <a target=_blank href=\"https:\/\/www.rjmprogramming.com.au\/HTMLCSS\/linked_sentence_creator.html-GETME\">Linked Sentence Creator<\/a> web application.<\/p>\n<p><!--p>You can also see this play out at WordPress 4.1.1's <a target=_blank  href='\/\/www.rjmprogramming.com.au\/ITblog\/new-linked-sentence-story-primer-tutorial\/'>New Linked Sentence Story Primer Tutorial<\/a> ...<\/p-->\n<hr>\n<p id='lsspt'>Previous relevant <a target=_blank title='Linked Sentence Story Primer Tutorial' href='\/\/www.rjmprogramming.com.au\/ITblog\/linked-sentence-story-primer-tutorial\/'>Linked Sentence Story Primer Tutorial<\/a> is shown below.<\/p>\n<div style=\"width: 230px\" class=\"wp-caption alignnone\"><a target=_blank href=\"https:\/\/www.rjmprogramming.com.au\/HTMLCSS\/linked_sentence_creator.html\"><img decoding=\"async\" style=\"border: 15px solid pink;\" alt=\"Linked Sentence Story Primer Tutorial\" src=\"http:\/\/www.rjmprogramming.com.au\/HTMLCSS\/linked_sentence_creator.gif\" title=\"Linked Sentence Story Primer Tutorial\"  style=\"float:left;\" \/><\/a><p class=\"wp-caption-text\">Linked Sentence Story Primer Tutorial<\/p><\/div>\n<p>We don&#8217;t know what amazes you <font size=1>&#8230; doh<\/font>!  But we get amazed by web application &#8220;kludges&#8221; that end up working <font size=1>&#8230; well, you had to be there<\/font>!   Let me explain!  In yesterday&#8217;s <a target=_blank href='https:\/\/www.rjmprogramming.com.au\/ITblog\/google-geo-chart-and-map-chart-hashtag-sms-tutorial\/' title='Google Geo Chart and Map Chart Hashtag SMS Tutorial'>Google Geo Chart and Map Chart Hashtag SMS Tutorial<\/a> &#8230; assuming &#8230;<\/p>\n<ol>\n<li>you were aware of it &#8230;<\/li>\n<li>you visited it &#8230;<\/li>\n<li>your eyes were not glazed over &#8230;<\/li>\n<li>a pet was not barfing on the floor <font size=1>(or elsewhere)<\/font> &#8230; at the crucial time when &#8230; <font size=1>doopy doopy doop doop, doop doop doop, doop doop doop doop, doopy doopy doop doop &#8230;<\/font><\/li>\n<li>there it was &#8230; <font color=blue>what?!<\/font> &#8230; I&#8217;m about to tell you &#8230;<br \/>\n&#8230;<br \/>\n.<br \/>\n..<br \/>\n&#8230;.<br \/>\n.<br \/>\n&#8230;&#8230;..<br \/>\n..<br \/>\n&#8230;&#8212;&#8230;<br \/>\n&#8212;&#8230;&#8212; &#8230; huh?! &#8230;<br \/>\n&#8230;<br \/>\n&#8230;&#8230;..<br \/>\n.<br \/>\n&#8230;. the codeline &#8230;<\/p>\n<blockquote style=font-size:9px;><p>\n       document.getElementById(&#8216;remail&#8217;).innerHTML=&#8217;&amp;#128231;&lt;\/a&gt;&nbsp;&#8216; + inplace.split(&#8216;&gt;&#8217;)[0] + &#8216;&gt;&amp;#128223;&#8217;;\n<\/p><\/blockquote>\n<p> &#8230; <font size=1>(unassumingly 9px but, still &#8230;)<\/font> gleaming, in the morning&#8217;s first rays, within the safety of its <i>code<\/i> element &#8230;<br \/>\n &#8230; <font color=blue>what?!<\/font> &#8230; I&#8217;m about to tell you &#8230;<br \/>\n&#8230;<br \/>\n.<br \/>\n..<br \/>\n&#8230;.<br \/>\n.<br \/>\n&#8230;&#8230;..<br \/>\n..<br \/>\n&#8230;&#8212;&#8230;<br \/>\n&#8212;&#8230;&#8212; &#8230; huh?! &#8230;<br \/>\n&#8230;<br \/>\n&#8230;&#8230;..<br \/>\n.<br \/>\n &#8230; &#8220;the kludge&#8221; &#8230; and not just any old &#8220;<a target=_blank title='Claytons ... the drink you are having when you are not having a drink.' href='https:\/\/www.youtube.com\/watch?v=3qf4yUMxnjw'>Clayton&#8217;s<\/a> Kludge&#8221; <font size=1>(sorry, you&#8217;re too late &#8230; we&#8217;ve patented it already)<\/font> &#8230;\n<\/li>\n<\/ol>\n<p>Yes, regarding Javascript DOM thinking, we still usually encase a &#8220;display:inline&#8221; type of scenario in an all encompassing div or span before the contemplation of appending content.  But the implication of this codeline is that for the HTML example &#8230;<\/p>\n<table>\n<tr>\n<td>\n<code><br \/>\n&lt;a id=\"remail\" href=\"mailto:blah\" title=\"First a element\"&gt;Email link ... This is roughly the wording of our \"a\" link&lt;\/a&gt;<br \/>\n<\/code><\/td>\n<td style=vertical-align:top;> \/\/ looking like <br \/><a id=\"remail\" href=\"#\" title=\"First a element\">Email link &#8230; This is roughly the wording of our &#8220;a&#8221; link<\/a><\/td>\n<\/tr>\n<\/table>\n<p><code><br \/>\n       document.getElementById('remail').innerHTML='&amp;#128231;&lt;\/a&gt;&nbsp;' + inplace.split('&gt;')[0] + '&gt;&amp;#128223;';<br \/>\n<\/code><\/p>\n<p> &#8230; could cause one &#8220;a&#8221; element to be spliced into two &#8230; and become &#8230;<\/p>\n<table>\n<tr>\n<td>\n<code><br \/>\n&lt;a id=\"remail\" href=\"mailto:blah\" title=\"First a element\"&gt;&amp;#128231;&gt;\/a&gt;&nbsp;&lt;\/a&gt;&lt;a id=\"rsms\" href=\"sms:blah\"&gt;&amp;#128223;&lt;\/a&gt;<br \/>\n<\/code><\/td>\n<td style=vertical-align:top;> \/\/ looking like <br \/><a id=\"remail\" href=\"mailto:blah\" title=\"First a element\">&#128231;<\/a>&nbsp;<\/a><a id=\"rsms\" href=\"sms:blah\">&#128223;<\/a><\/td>\n<\/tr>\n<\/table>\n<p> &#8230; without using any overseeing nesting element of any sort!<\/p>\n<p>Anyway, we were gobsmacked, and today we write a proof of concept Linked Sentence web application making heavy use of this principle.<\/p>\n<p>We thought with this Linked Sentence it could be like a &#8220;piecing together&#8221; of a story type of thing, with some similarities to the web application of <a target=_blank href='https:\/\/www.rjmprogramming.com.au\/ITblog\/fairy-story-chrome-dictation-punctuation-tutorial' title='Fairy Story Chrome Dictation Punctuation Tutorial'>Fairy Story Chrome Dictation Punctuation Tutorial<\/a> times, with <a target=_blank href=\"https:\/\/www.rjmprogramming.com.au\/HTMLCSS\/linked_sentence_creator.html_GETME\">this first draft<\/a> <a target=_blank href=\"https:\/\/www.rjmprogramming.com.au\/HTMLCSS\/linked_sentence_creator.html\" title=\"Click picture\">Linked Sentence Creator<\/a> web application also &#8220;playable&#8221; below &#8230;<\/p>\n<p><iframe style=\"width:100%;height:700px;\" src=\"https:\/\/www.rjmprogramming.com.au\/HTMLCSS\/linked_sentence_creator.html\"><\/iframe><\/p>\n<p>If this was interesting you may be interested in <a title='Click here to see topics in which you might be interested' href='#d62992' onclick='var dv=document.getElementById(\"d62992\"); dv.innerHTML = \"&lt;iframe width=670 height=600 src=\" + \"https:\/\/www.rjmprogramming.com.au\/ITblog\/tag\/dom\" + \"&gt;&lt;\/iframe&gt;\"; dv.style.display = \"block\";'>this<\/a> too.<\/p>\n<div id='d62992' style='display: none; border-left: 2px solid green; border-top: 2px solid green;'><\/div>\n<hr>\n<p>If this was interesting you may be interested in <a title='Click here to see topics in which you might be interested' href='#d63033' onclick='var dv=document.getElementById(\"d63033\"); dv.innerHTML = \"&lt;iframe width=670 height=600 src=\" + \"https:\/\/www.rjmprogramming.com.au\/ITblog\/tag\/share\" + \"&gt;&lt;\/iframe&gt;\"; dv.style.display = \"block\";'>this<\/a> too.<\/p>\n<div id='d63033' style='display: none; border-left: 2px solid green; border-top: 2px solid green;'><\/div>\n","protected":false},"excerpt":{"rendered":"<p>Today&#8217;s work, adding some sharing functionality, onto yesterday&#8217;s Linked Sentence Story Primer Tutorial&#8216;s &#8220;proof of concept&#8221; work with our new &#8220;Linked Sentence Creator&#8221; web application was made that much easier now that &#8230; &#8220;mailto:&#8221; emailing &#8220;a&#8221; links &#8230; and &#8230; &hellip; <a href=\"https:\/\/www.rjmprogramming.com.au\/ITblog\/linked-sentence-story-sharing-tutorial\/\">Continue reading <span class=\"meta-nav\">&rarr;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[12,14,37],"tags":[2236,1604,2539,3609,354,380,385,1525,652,1807,4704,710,4701,1861,4703,939,4151,4702,997,1986,1119,1133,1137,1159,1203,1319,4705,1452,1622],"class_list":["post-63033","post","type-post","status-publish","format-standard","hentry","category-elearning","category-event-driven-programming","category-tutorials","tag-append","tag-collaboration","tag-createelement","tag-document-createelement","tag-dom","tag-email","tag-emoji","tag-innerhtml","tag-javascript","tag-link","tag-linked","tag-list","tag-modify","tag-outerhtml","tag-part","tag-phrase","tag-prepend","tag-primer","tag-programming","tag-proof-of-concept","tag-sentence","tag-share","tag-sharing","tag-sms","tag-story","tag-tutorial","tag-window-open-popup","tag-word","tag-words"],"_links":{"self":[{"href":"https:\/\/www.rjmprogramming.com.au\/ITblog\/wp-json\/wp\/v2\/posts\/63033"}],"collection":[{"href":"https:\/\/www.rjmprogramming.com.au\/ITblog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.rjmprogramming.com.au\/ITblog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.rjmprogramming.com.au\/ITblog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.rjmprogramming.com.au\/ITblog\/wp-json\/wp\/v2\/comments?post=63033"}],"version-history":[{"count":14,"href":"https:\/\/www.rjmprogramming.com.au\/ITblog\/wp-json\/wp\/v2\/posts\/63033\/revisions"}],"predecessor-version":[{"id":63047,"href":"https:\/\/www.rjmprogramming.com.au\/ITblog\/wp-json\/wp\/v2\/posts\/63033\/revisions\/63047"}],"wp:attachment":[{"href":"https:\/\/www.rjmprogramming.com.au\/ITblog\/wp-json\/wp\/v2\/media?parent=63033"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rjmprogramming.com.au\/ITblog\/wp-json\/wp\/v2\/categories?post=63033"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rjmprogramming.com.au\/ITblog\/wp-json\/wp\/v2\/tags?post=63033"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}