{"id":986,"date":"2019-09-09T13:23:31","date_gmt":"2019-09-09T10:23:31","guid":{"rendered":"https:\/\/html-online.com\/articles\/?p=986"},"modified":"2024-09-13T11:36:45","modified_gmt":"2024-09-13T08:36:45","slug":"website-walkthrough-intro-tour-javascript","status":"publish","type":"post","link":"https:\/\/html-online.com\/articles\/website-walkthrough-intro-tour-javascript\/","title":{"rendered":"Website Walkthrough Intro Bubbles &#8211; JavaScript Widget"},"content":{"rendered":"<p><strong>Guide your visitors through your website with this lightweight JavaScript-jQuery solution. Improve the user experience by presenting the features of the site in a quick interactive step by step bubble tour.<\/strong><\/p>\n<p class=\"aligncenter\"><a href=\"\/demo\/website-walkthrough-tour\/\" target=\"_blank\" rel=\"noopener noreferrer\"><img decoding=\"async\" src=\"\/articles\/wp-content\/uploads\/2019\/04\/website-intro-walkthrough-tour-javascript.jpg\" alt=\"website intro walkthrough tour javascript\"><br \/>\n<strong>Check out the live demo here<\/strong><\/a>.<\/p>\n<p><!--more--><br \/>\nI have presented many simple website widgets I have implemented for various websites. For example <a href=\"\/articles\/website-search-box-with-dropdown-tooltip-suggestions\/\">the website search box<\/a> and <a href=\"\/articles\/category\/freebies\/\">many others<\/a>. In this article I&#8217;m going to present a great&nbsp;alternative for&nbsp;<a href=\"https:\/\/bootstraptour.com\/\" target=\"_blank\" rel=\"external nofollow noopener noreferrer\">bootstraptour.com<\/a>&nbsp;and&nbsp;<a href=\"https:\/\/introjs.com\/\" target=\"_blank\" rel=\"external nofollow noopener noreferrer\">introjs.com<\/a>. I didn&#8217;t like those and I wanted to have my own solution that&#8217;s much more simple.<\/p>\n<h2>Impementation<\/h2>\n<h3>1. Target the sections in your HTML<\/h3>\n<p>Add the necessary data-attributes and the <strong>walkthrough<\/strong> class to the wrappers of your sections.<\/p>\n<pre><span style=\"color: #a65700;\">&lt;<\/span><span style=\"color: #800000; font-weight: bold;\">div<\/span><span style=\"color: #274796;\"> <\/span><span style=\"color: #074726;\">class<\/span><span style=\"color: #808030;\">=<\/span><span style=\"color: #0000e6;\">\"walkthrough\"<\/span><span style=\"color: #274796;\"> <\/span><span style=\"color: #074726;\">data<\/span><span style=\"color: #274796;\">-wttext<\/span><span style=\"color: #808030;\">=<\/span><span style=\"color: #0000e6;\">\"Your message!\"<\/span><span style=\"color: #274796;\"> <\/span><span style=\"color: #074726;\">data<\/span><span style=\"color: #274796;\">-wtpos<\/span><span style=\"color: #808030;\">=<\/span><span style=\"color: #0000e6;\">\"bottom\"<\/span><span style=\"color: #274796;\"> <\/span><span style=\"color: #074726;\">data<\/span><span style=\"color: #274796;\">-wtnext<\/span><span style=\"color: #808030;\">=<\/span><span style=\"color: #0000e6;\">\"Next\"<\/span><span style=\"color: #274796;\"> <\/span><span style=\"color: #074726;\">data<\/span><span style=\"color: #274796;\">-wtnr<\/span><span style=\"color: #808030;\">=<\/span><span style=\"color: #0000e6;\">\"1\"<\/span><span style=\"color: #a65700;\">&gt;<\/span>\n\tA section on your website\n<span style=\"color: #a65700;\">&lt;\/<\/span><span style=\"color: #800000; font-weight: bold;\">div<\/span><span style=\"color: #a65700;\">&gt;<\/span>\n<\/pre>\n<ul>\n<li><strong>data-wttext<\/strong> &#8211; The text in the bubble<\/li>\n<li><strong>data-wtnext<\/strong> &#8211; Next button text.<\/li>\n<li><strong>data-wtpos<\/strong> &#8211; Set the position of the popup. Implement new ones and adjust them in CSS. By default it puts them in the top right corner.<\/li>\n<li><strong>data-wtnr<\/strong> &#8211; Order the popups starting from 1. Make sure you don&#8217;t miss one.<\/li>\n<\/ul>\n<h3>2. Add the JavaScript code<\/h3>\n<p>Make sure your <a href=\"https:\/\/htmlcheatsheet.com\/jquery\/\">site is using jQuery<\/a>, otherwise you need to add it. The script below makes our intro work.<\/p>\n<p>Make adjustments if you wish. Set the <strong>wtshow variable to 0<\/strong> if you don&#8217;t wish to auto start the interactive intro. In this case you can trigger it with this script:&nbsp;<em>wtshow = 1;showWT();<\/em>&nbsp;which can be added as an onclick event to a button, <a href=\"\/demo\/website-walkthrough-tour\/\" target=\"_blank\" rel=\"noopener noreferrer\">just like in our demo<\/a>.<\/p>\n<pre><span style=\"color:#696969; \">\/*Walkthrough JS BEGIN*\/<\/span>\n<span style=\"color:#800000; font-weight:bold; \">var<\/span> wtshow <span style=\"color:#808030; \">=<\/span> <span style=\"color:#008c00; \">1<\/span><span style=\"color:#800080; \">;<\/span>\t<span style=\"color:#696969; \">\/\/ set to 0 to disable auto start<\/span>\n<span style=\"color:#800000; font-weight:bold; \">var<\/span> wtslides <span style=\"color:#808030; \">=<\/span> <span style=\"color:#008c00; \">0<\/span><span style=\"color:#800080; \">;<\/span>\n$<span style=\"color:#808030; \">(<\/span>document<span style=\"color:#808030; \">)<\/span><span style=\"color:#808030; \">.<\/span>ready<span style=\"color:#808030; \">(<\/span><span style=\"color:#800000; font-weight:bold; \">function<\/span><span style=\"color:#808030; \">(<\/span><span style=\"color:#808030; \">)<\/span><span style=\"color:#800080; \">{<\/span>\t\n\t<span style=\"color:#800000; font-weight:bold; \">var<\/span> wt<span style=\"color:#800080; \">;<\/span>\n\t$<span style=\"color:#808030; \">(<\/span><span style=\"color:#800000; \">\"<\/span><span style=\"color:#0000e6; \">.walkthrough<\/span><span style=\"color:#800000; \">\"<\/span><span style=\"color:#808030; \">)<\/span><span style=\"color:#808030; \">.<\/span>each<span style=\"color:#808030; \">(<\/span><span style=\"color:#800000; font-weight:bold; \">function<\/span><span style=\"color:#808030; \">(<\/span><span style=\"color:#808030; \">)<\/span> <span style=\"color:#800080; \">{<\/span>\n\t\twt <span style=\"color:#808030; \">=<\/span> <span style=\"color:#800000; \">'<\/span><span style=\"color:#0000e6; \">&lt;div class=\"wtSlide wtSlidePos<\/span><span style=\"color:#800000; \">'<\/span> <span style=\"color:#808030; \">+<\/span> $<span style=\"color:#808030; \">(<\/span><span style=\"color:#800000; font-weight:bold; \">this<\/span><span style=\"color:#808030; \">)<\/span><span style=\"color:#808030; \">.<\/span>attr<span style=\"color:#808030; \">(<\/span><span style=\"color:#800000; \">\"<\/span><span style=\"color:#0000e6; \">data-wtpos<\/span><span style=\"color:#800000; \">\"<\/span><span style=\"color:#808030; \">)<\/span> <span style=\"color:#808030; \">+<\/span> <span style=\"color:#800000; \">'<\/span><span style=\"color:#0000e6; \">\" id=\"wtSlide<\/span><span style=\"color:#800000; \">'<\/span> <span style=\"color:#808030; \">+<\/span> $<span style=\"color:#808030; \">(<\/span><span style=\"color:#800000; font-weight:bold; \">this<\/span><span style=\"color:#808030; \">)<\/span><span style=\"color:#808030; \">.<\/span>attr<span style=\"color:#808030; \">(<\/span><span style=\"color:#800000; \">\"<\/span><span style=\"color:#0000e6; \">data-wtnr<\/span><span style=\"color:#800000; \">\"<\/span><span style=\"color:#808030; \">)<\/span> <span style=\"color:#808030; \">+<\/span> <span style=\"color:#800000; \">'<\/span><span style=\"color:#0000e6; \">\"&gt;&lt;div&gt;<\/span><span style=\"color:#800000; \">'<\/span> <span style=\"color:#808030; \">+<\/span> $<span style=\"color:#808030; \">(<\/span><span style=\"color:#800000; font-weight:bold; \">this<\/span><span style=\"color:#808030; \">)<\/span><span style=\"color:#808030; \">.<\/span>attr<span style=\"color:#808030; \">(<\/span><span style=\"color:#800000; \">\"<\/span><span style=\"color:#0000e6; \">data-wttext<\/span><span style=\"color:#800000; \">\"<\/span><span style=\"color:#808030; \">)<\/span> <span style=\"color:#808030; \">+<\/span> <span style=\"color:#800000; \">\"<\/span><span style=\"color:#0000e6; \">&lt;\/div&gt;&lt;span class='wtNext'&gt;<\/span><span style=\"color:#800000; \">\"<\/span> <span style=\"color:#808030; \">+<\/span> $<span style=\"color:#808030; \">(<\/span><span style=\"color:#800000; font-weight:bold; \">this<\/span><span style=\"color:#808030; \">)<\/span><span style=\"color:#808030; \">.<\/span>attr<span style=\"color:#808030; \">(<\/span><span style=\"color:#800000; \">\"<\/span><span style=\"color:#0000e6; \">data-wtnext<\/span><span style=\"color:#800000; \">\"<\/span><span style=\"color:#808030; \">)<\/span> <span style=\"color:#808030; \">+<\/span> <span style=\"color:#800000; \">\"<\/span><span style=\"color:#0000e6; \">&lt;\/span&gt;&lt;span class='wtClose'&gt;<\/span><span style=\"color:#074726; \">&amp;<\/span><span style=\"color:#074726; \">times<\/span><span style=\"color:#074726; \">;<\/span><span style=\"color:#0000e6; \">&lt;\/span&gt;&lt;\/div&gt;<\/span><span style=\"color:#800000; \">\"<\/span><span style=\"color:#800080; \">;<\/span>\n\t\t$<span style=\"color:#808030; \">(<\/span><span style=\"color:#800000; font-weight:bold; \">this<\/span><span style=\"color:#808030; \">)<\/span><span style=\"color:#808030; \">.<\/span>append<span style=\"color:#808030; \">(<\/span>wt<span style=\"color:#808030; \">)<\/span><span style=\"color:#800080; \">;<\/span>\n\t\t$<span style=\"color:#808030; \">(<\/span><span style=\"color:#800000; font-weight:bold; \">this<\/span><span style=\"color:#808030; \">)<\/span><span style=\"color:#808030; \">.<\/span>addClass<span style=\"color:#808030; \">(<\/span><span style=\"color:#800000; \">'<\/span><span style=\"color:#0000e6; \">wtsection<\/span><span style=\"color:#800000; \">'<\/span> <span style=\"color:#808030; \">+<\/span> $<span style=\"color:#808030; \">(<\/span><span style=\"color:#800000; font-weight:bold; \">this<\/span><span style=\"color:#808030; \">)<\/span><span style=\"color:#808030; \">.<\/span>attr<span style=\"color:#808030; \">(<\/span><span style=\"color:#800000; \">\"<\/span><span style=\"color:#0000e6; \">data-wtnr<\/span><span style=\"color:#800000; \">\"<\/span><span style=\"color:#808030; \">)<\/span><span style=\"color:#808030; \">)<\/span><span style=\"color:#800080; \">;<\/span>\n\t\twtslides<span style=\"color:#808030; \">++<\/span><span style=\"color:#800080; \">;<\/span>\t\t\n\t<span style=\"color:#800080; \">}<\/span><span style=\"color:#808030; \">)<\/span><span style=\"color:#800080; \">;<\/span>\t\n\t <span style=\"color:#800000; font-weight:bold; \">setTimeout<\/span><span style=\"color:#808030; \">(<\/span><span style=\"color:#800000; font-weight:bold; \">function<\/span> <span style=\"color:#808030; \">(<\/span><span style=\"color:#808030; \">)<\/span> <span style=\"color:#800080; \">{<\/span>\n\t\tshowWT<span style=\"color:#808030; \">(<\/span><span style=\"color:#808030; \">)<\/span><span style=\"color:#800080; \">;<\/span>\t<span style=\"color:#696969; \">\/\/ show the first slide<\/span>\n\t <span style=\"color:#800080; \">}<\/span><span style=\"color:#808030; \">,<\/span> <span style=\"color:#008c00; \">1000<\/span><span style=\"color:#808030; \">)<\/span><span style=\"color:#800080; \">;<\/span>\t\n    $<span style=\"color:#808030; \">(<\/span><span style=\"color:#800000; \">\"<\/span><span style=\"color:#0000e6; \">.wtNext<\/span><span style=\"color:#800000; \">\"<\/span><span style=\"color:#808030; \">)<\/span><span style=\"color:#808030; \">.<\/span>click<span style=\"color:#808030; \">(<\/span><span style=\"color:#800000; font-weight:bold; \">function<\/span><span style=\"color:#808030; \">(<\/span><span style=\"color:#808030; \">)<\/span><span style=\"color:#800080; \">{<\/span>\n        wtshow<span style=\"color:#808030; \">++<\/span><span style=\"color:#800080; \">;<\/span>\n\t\tshowWT<span style=\"color:#808030; \">(<\/span><span style=\"color:#808030; \">)<\/span><span style=\"color:#800080; \">;<\/span>\n    <span style=\"color:#800080; \">}<\/span><span style=\"color:#808030; \">)<\/span><span style=\"color:#800080; \">;<\/span>\n    $<span style=\"color:#808030; \">(<\/span><span style=\"color:#800000; \">\"<\/span><span style=\"color:#0000e6; \">.wtClose<\/span><span style=\"color:#800000; \">\"<\/span><span style=\"color:#808030; \">)<\/span><span style=\"color:#808030; \">.<\/span>click<span style=\"color:#808030; \">(<\/span><span style=\"color:#800000; font-weight:bold; \">function<\/span><span style=\"color:#808030; \">(<\/span><span style=\"color:#808030; \">)<\/span><span style=\"color:#800080; \">{<\/span>\n        wtshow <span style=\"color:#808030; \">=<\/span> <span style=\"color:#008c00; \">0<\/span><span style=\"color:#800080; \">;<\/span>\n\t\t$<span style=\"color:#808030; \">(<\/span><span style=\"color:#800000; \">\"<\/span><span style=\"color:#0000e6; \">.wtSlide<\/span><span style=\"color:#800000; \">\"<\/span><span style=\"color:#808030; \">)<\/span><span style=\"color:#808030; \">.<\/span>fadeOut<span style=\"color:#808030; \">(<\/span><span style=\"color:#008c00; \">222<\/span><span style=\"color:#808030; \">)<\/span><span style=\"color:#800080; \">;<\/span>\n\t\t$<span style=\"color:#808030; \">(<\/span><span style=\"color:#800000; \">\"<\/span><span style=\"color:#0000e6; \">.wtactive<\/span><span style=\"color:#800000; \">\"<\/span><span style=\"color:#808030; \">)<\/span><span style=\"color:#808030; \">.<\/span>removeClass<span style=\"color:#808030; \">(<\/span><span style=\"color:#800000; \">\"<\/span><span style=\"color:#0000e6; \">wtactive<\/span><span style=\"color:#800000; \">\"<\/span><span style=\"color:#808030; \">)<\/span><span style=\"color:#800080; \">;<\/span>\n    <span style=\"color:#800080; \">}<\/span><span style=\"color:#808030; \">)<\/span><span style=\"color:#800080; \">;<\/span>\n<span style=\"color:#800080; \">}<\/span><span style=\"color:#808030; \">)<\/span><span style=\"color:#800080; \">;<\/span>\n<span style=\"color:#800000; font-weight:bold; \">function<\/span> showWT<span style=\"color:#808030; \">(<\/span><span style=\"color:#808030; \">)<\/span> <span style=\"color:#800080; \">{<\/span>\n\t$<span style=\"color:#808030; \">(<\/span><span style=\"color:#800000; \">\"<\/span><span style=\"color:#0000e6; \">.wtSlide<\/span><span style=\"color:#800000; \">\"<\/span><span style=\"color:#808030; \">)<\/span><span style=\"color:#808030; \">.<\/span>fadeOut<span style=\"color:#808030; \">(<\/span><span style=\"color:#008c00; \">222<\/span><span style=\"color:#808030; \">)<\/span><span style=\"color:#800080; \">;<\/span>\n\t$<span style=\"color:#808030; \">(<\/span><span style=\"color:#800000; \">\"<\/span><span style=\"color:#0000e6; \">.walkthrough<\/span><span style=\"color:#800000; \">\"<\/span><span style=\"color:#808030; \">)<\/span><span style=\"color:#808030; \">.<\/span>removeClass<span style=\"color:#808030; \">(<\/span><span style=\"color:#800000; \">\"<\/span><span style=\"color:#0000e6; \">wtactive<\/span><span style=\"color:#800000; \">\"<\/span><span style=\"color:#808030; \">)<\/span><span style=\"color:#800080; \">;<\/span>\n\t<span style=\"color:#800000; font-weight:bold; \">if<\/span> <span style=\"color:#808030; \">(<\/span>wtshow <span style=\"color:#808030; \">&lt;=<\/span> wtslides<span style=\"color:#808030; \">)<\/span> <span style=\"color:#800080; \">{<\/span>\n\t\t$<span style=\"color:#808030; \">(<\/span><span style=\"color:#800000; \">\"<\/span><span style=\"color:#0000e6; \">#wtSlide<\/span><span style=\"color:#800000; \">\"<\/span> <span style=\"color:#808030; \">+<\/span> wtshow<span style=\"color:#808030; \">)<\/span><span style=\"color:#808030; \">.<\/span>fadeIn<span style=\"color:#808030; \">(<\/span><span style=\"color:#008c00; \">222<\/span><span style=\"color:#808030; \">)<\/span><span style=\"color:#800080; \">;<\/span>\n\t\t$<span style=\"color:#808030; \">(<\/span><span style=\"color:#800000; \">\"<\/span><span style=\"color:#0000e6; \">.wtsection<\/span><span style=\"color:#800000; \">\"<\/span> <span style=\"color:#808030; \">+<\/span> wtshow<span style=\"color:#808030; \">)<\/span><span style=\"color:#808030; \">.<\/span>addClass<span style=\"color:#808030; \">(<\/span><span style=\"color:#800000; \">\"<\/span><span style=\"color:#0000e6; \">wtactive<\/span><span style=\"color:#800000; \">\"<\/span><span style=\"color:#808030; \">)<\/span><span style=\"color:#800080; \">;<\/span>\n\t\t$<span style=\"color:#808030; \">(<\/span><span style=\"color:#800000; \">\"<\/span><span style=\"color:#0000e6; \">html, body<\/span><span style=\"color:#800000; \">\"<\/span><span style=\"color:#808030; \">)<\/span><span style=\"color:#808030; \">.<\/span>animate<span style=\"color:#808030; \">(<\/span><span style=\"color:#800080; \">{<\/span> scrollTop<span style=\"color:#800080; \">:<\/span> $<span style=\"color:#808030; \">(<\/span><span style=\"color:#800000; \">\"<\/span><span style=\"color:#0000e6; \">#wtSlide<\/span><span style=\"color:#800000; \">\"<\/span> <span style=\"color:#808030; \">+<\/span> wtshow<span style=\"color:#808030; \">)<\/span><span style=\"color:#808030; \">.<\/span>offset<span style=\"color:#808030; \">(<\/span><span style=\"color:#808030; \">)<\/span><span style=\"color:#808030; \">.<\/span>top <span style=\"color:#808030; \">-<\/span> <span style=\"color:#008c00; \">200<\/span> <span style=\"color:#800080; \">}<\/span><span style=\"color:#808030; \">,<\/span> <span style=\"color:#008c00; \">500<\/span><span style=\"color:#808030; \">)<\/span><span style=\"color:#800080; \">;<\/span>\n\t<span style=\"color:#800080; \">}<\/span>\n<span style=\"color:#800080; \">}<\/span>\n<span style=\"color:#696969; \">\/*Walkthrough JS BEGIN*\/<\/span>\n<\/pre>\n<h3>3. Style your widget<\/h3>\n<p>Use the CSS below to style your speech bubbles and adjust it to blend into your site. Add new popup positions.<\/p>\n<pre style=\"color: #000000; background: #ffffff;\"><span style=\"color: #696969;\">\/*Walkthrough JS BEGIN*\/<\/span>\n<span style=\"color: #808030;\">.<\/span>walkthrough <span style=\"color: #800080;\">{<\/span>\n    <span style=\"color: #bb7977; font-weight: bold;\">position<\/span><span style=\"color: #808030;\">:<\/span> <span style=\"color: #074726;\">relative<\/span><span style=\"color: #800080;\">;<\/span>\n<span style=\"color: #800080;\">}<\/span>\n.walkthrough<span style=\"color: #808030;\">.<\/span>wtactive <span style=\"color: #800080;\">{<\/span>\n    <span style=\"color: #bb7977; font-weight: bold;\">outline<\/span><span style=\"color: #808030;\">:<\/span> <span style=\"color: #008c00;\">4<\/span><span style=\"color: #006600;\">px<\/span> <span style=\"color: #074726;\">dashed<\/span> <span style=\"color: #008c00;\">#<\/span><span style=\"color: #008000;\">b32d2d<\/span><span style=\"color: #800080;\">;<\/span>\n<span style=\"color: #800080;\">}<\/span>\n<span style=\"color: #808030;\">.<\/span>wtSlide <span style=\"color: #800080;\">{<\/span>\n    <span style=\"color: #bb7977; font-weight: bold;\">position<\/span><span style=\"color: #808030;\">:<\/span> <span style=\"color: #074726;\">absolute<\/span><span style=\"color: #800080;\">;<\/span>\n    <span style=\"color: #bb7977; font-weight: bold;\">background<\/span><span style=\"color: #808030;\">:<\/span> <span style=\"color: #008c00;\">#<\/span><span style=\"color: #008000;\">ece0e0<\/span><span style=\"color: #800080;\">;<\/span>\n    <span style=\"color: #bb7977; font-weight: bold;\">border<\/span><span style=\"color: #808030;\">:<\/span> <span style=\"color: #008c00;\">2<\/span><span style=\"color: #006600;\">px<\/span> <span style=\"color: #074726;\">solid<\/span> <span style=\"color: #008c00;\">#<\/span><span style=\"color: #008000;\">b32d2d<\/span><span style=\"color: #800080;\">;<\/span>\n    <span style=\"color: #bb7977; font-weight: bold;\">color<\/span><span style=\"color: #808030;\">:<\/span> <span style=\"color: #008c00;\">#<\/span><span style=\"color: #008000;\">333<\/span><span style=\"color: #800080;\">;<\/span>\n\t<span style=\"color: #bb7977; font-weight: bold;\">font-size<\/span><span style=\"color: #808030;\">:<\/span> <span style=\"color: #008c00;\">16<\/span><span style=\"color: #006600;\">px<\/span><span style=\"color: #800080;\">;<\/span>\n    <span style=\"color: #bb7977; font-weight: bold;\">padding<\/span><span style=\"color: #808030;\">:<\/span> <span style=\"color: #008c00;\">10<\/span><span style=\"color: #006600;\">px<\/span><span style=\"color: #800080;\">;<\/span>\n    <span style=\"color: #bb7977; font-weight: bold;\">box-shadow<\/span><span style=\"color: #808030;\">:<\/span> <span style=\"color: #008c00;\">5<\/span><span style=\"color: #006600;\">px<\/span> <span style=\"color: #008c00;\">4<\/span><span style=\"color: #006600;\">px<\/span> <span style=\"color: #008c00;\">5<\/span><span style=\"color: #006600;\">px<\/span> <span style=\"color: #008c00;\">#<\/span><span style=\"color: #008000;\">555<\/span><span style=\"color: #800080;\">;<\/span>\n    <span style=\"color: #bb7977; font-weight: bold;\">top<\/span><span style=\"color: #808030;\">:<\/span> <span style=\"color: #808030;\">-<\/span><span style=\"color: #008c00;\">70<\/span><span style=\"color: #006600;\">px<\/span><span style=\"color: #800080;\">;<\/span>\n    <span style=\"color: #bb7977; font-weight: bold;\">border-radius<\/span><span style=\"color: #808030;\">:<\/span> <span style=\"color: #008c00;\">20<\/span><span style=\"color: #006600;\">px<\/span> <span style=\"color: #008c00;\">20<\/span><span style=\"color: #006600;\">px<\/span> <span style=\"color: #008c00;\">20<\/span><span style=\"color: #006600;\">px<\/span> <span style=\"color: #008c00;\">1<\/span><span style=\"color: #006600;\">px<\/span><span style=\"color: #800080;\">;<\/span>\n    <span style=\"color: #bb7977; font-weight: bold;\">right<\/span><span style=\"color: #808030;\">:<\/span> <span style=\"color: #808030;\">-<\/span><span style=\"color: #008c00;\">70<\/span><span style=\"color: #006600;\">px<\/span><span style=\"color: #800080;\">;<\/span>\n    <span style=\"color: #bb7977; font-weight: bold;\">font-weight<\/span><span style=\"color: #808030;\">:<\/span> <span style=\"color: #074726;\">bold<\/span><span style=\"color: #800080;\">;<\/span>\n\t<span style=\"color: #bb7977; font-weight: bold;\">display<\/span><span style=\"color: #808030;\">:<\/span> <span style=\"color: #074726;\">none<\/span><span style=\"color: #800080;\">;<\/span>\n<span style=\"color: #800080;\">}<\/span>\n<span style=\"color: #808030;\">.<\/span>wtNext <span style=\"color: #800080;\">{<\/span>\n    <span style=\"color: #bb7977; font-weight: bold;\">cursor<\/span><span style=\"color: #808030;\">:<\/span> <span style=\"color: #074726;\">pointer<\/span><span style=\"color: #800080;\">;<\/span>\n    <span style=\"color: #bb7977; font-weight: bold;\">display<\/span><span style=\"color: #808030;\">:<\/span> <span style=\"color: #074726;\">inline-block<\/span><span style=\"color: #800080;\">;<\/span>\n    <span style=\"color: #bb7977; font-weight: bold;\">padding<\/span><span style=\"color: #808030;\">:<\/span> <span style=\"color: #008c00;\">2<\/span><span style=\"color: #006600;\">px<\/span> <span style=\"color: #008c00;\">10<\/span><span style=\"color: #006600;\">px<\/span><span style=\"color: #800080;\">;<\/span>\n    <span style=\"color: #bb7977; font-weight: bold;\">font-size<\/span><span style=\"color: #808030;\">:<\/span> <span style=\"color: #008c00;\">1.2<\/span><span style=\"color: #006600;\">em<\/span><span style=\"color: #800080;\">;<\/span>\n    <span style=\"color: #bb7977; font-weight: bold;\">border<\/span><span style=\"color: #808030;\">:<\/span> <span style=\"color: #008c00;\">1<\/span><span style=\"color: #006600;\">px<\/span> <span style=\"color: #074726;\">solid<\/span> <span style=\"color: #008c00;\">#<\/span><span style=\"color: #008000;\">777<\/span><span style=\"color: #800080;\">;<\/span>\n    <span style=\"color: #bb7977; font-weight: bold;\">background<\/span><span style=\"color: #808030;\">:<\/span> <span style=\"color: #008c00;\">#<\/span><span style=\"color: #008000;\">FFF<\/span><span style=\"color: #800080;\">;<\/span>\n    <span style=\"color: #bb7977; font-weight: bold;\">border-radius<\/span><span style=\"color: #808030;\">:<\/span> <span style=\"color: #008c00;\">5<\/span><span style=\"color: #006600;\">px<\/span><span style=\"color: #800080;\">;<\/span>\n    <span style=\"color: #bb7977; font-weight: bold;\">margin<\/span><span style=\"color: #808030;\">:<\/span> <span style=\"color: #008c00;\">5<\/span><span style=\"color: #006600;\">px<\/span> <span style=\"color: #008c00;\">0<\/span> <span style=\"color: #008c00;\">0<\/span> <span style=\"color: #008c00;\">0<\/span><span style=\"color: #800080;\">;<\/span>\n<span style=\"color: #800080;\">}<\/span>\n<span style=\"color: #808030;\">.<\/span>wtNext<span style=\"color: #800080;\">:<\/span><span style=\"color: #800000; font-weight: bold;\">hover<\/span> <span style=\"color: #800080;\">{<\/span>\n\t<span style=\"color: #bb7977; font-weight: bold;\">border<\/span><span style=\"color: #808030;\">:<\/span> <span style=\"color: #008c00;\">1<\/span><span style=\"color: #006600;\">px<\/span> <span style=\"color: #074726;\">solid<\/span> <span style=\"color: #008c00;\">#<\/span><span style=\"color: #008000;\">000<\/span><span style=\"color: #800080;\">;<\/span>\n\t<span style=\"color: #bb7977; font-weight: bold;\">box-shadow<\/span><span style=\"color: #808030;\">:<\/span> <span style=\"color: #008c00;\">2<\/span><span style=\"color: #006600;\">px<\/span> <span style=\"color: #008c00;\">2<\/span><span style=\"color: #006600;\">px<\/span> <span style=\"color: #008c00;\">5<\/span><span style=\"color: #006600;\">px<\/span> <span style=\"color: #008c00;\">#<\/span><span style=\"color: #008000;\">000<\/span><span style=\"color: #800080;\">;<\/span>\n<span style=\"color: #800080;\">}<\/span>\n<span style=\"color: #808030;\">.<\/span>wtClose <span style=\"color: #800080;\">{<\/span>\n    <span style=\"color: #bb7977; font-weight: bold;\">background<\/span><span style=\"color: #808030;\">:<\/span> <span style=\"color: #008c00;\">#<\/span><span style=\"color: #008000;\">b32d2d<\/span><span style=\"color: #800080;\">;<\/span>\n    <span style=\"color: #bb7977; font-weight: bold;\">color<\/span><span style=\"color: #808030;\">:<\/span> <span style=\"color: #008c00;\">#<\/span><span style=\"color: #008000;\">FFF<\/span><span style=\"color: #800080;\">;<\/span>\n    <span style=\"color: #bb7977; font-weight: bold;\">position<\/span><span style=\"color: #808030;\">:<\/span> <span style=\"color: #074726;\">absolute<\/span><span style=\"color: #800080;\">;<\/span>\n    <span style=\"color: #bb7977; font-weight: bold;\">display<\/span><span style=\"color: #808030;\">:<\/span> <span style=\"color: #074726;\">inline-block<\/span><span style=\"color: #800080;\">;<\/span>\n    <span style=\"color: #bb7977; font-weight: bold;\">top<\/span><span style=\"color: #808030;\">:<\/span> <span style=\"color: #808030;\">-<\/span><span style=\"color: #008c00;\">21<\/span><span style=\"color: #006600;\">px<\/span><span style=\"color: #800080;\">;<\/span>\n    <span style=\"color: #bb7977; font-weight: bold;\">right<\/span><span style=\"color: #808030;\">:<\/span> <span style=\"color: #808030;\">-<\/span><span style=\"color: #008c00;\">20<\/span><span style=\"color: #006600;\">px<\/span><span style=\"color: #800080;\">;<\/span>\n    <span style=\"color: #bb7977; font-weight: bold;\">font-size<\/span><span style=\"color: #808030;\">:<\/span> <span style=\"color: #008c00;\">30<\/span><span style=\"color: #006600;\">px<\/span><span style=\"color: #800080;\">;<\/span>\n    <span style=\"color: #bb7977; font-weight: bold;\">cursor<\/span><span style=\"color: #808030;\">:<\/span> <span style=\"color: #074726;\">pointer<\/span><span style=\"color: #800080;\">;<\/span>\n    <span style=\"color: #bb7977; font-weight: bold;\">width<\/span><span style=\"color: #808030;\">:<\/span> <span style=\"color: #008c00;\">30<\/span><span style=\"color: #006600;\">px<\/span><span style=\"color: #800080;\">;<\/span>\n    <span style=\"color: #bb7977; font-weight: bold;\">height<\/span><span style=\"color: #808030;\">:<\/span> <span style=\"color: #008c00;\">30<\/span><span style=\"color: #006600;\">px<\/span><span style=\"color: #800080;\">;<\/span>\n    <span style=\"color: #bb7977; font-weight: bold;\">text-align<\/span><span style=\"color: #808030;\">:<\/span> <span style=\"color: #074726;\">center<\/span><span style=\"color: #800080;\">;<\/span>\n    <span style=\"color: #bb7977; font-weight: bold;\">line-height<\/span><span style=\"color: #808030;\">:<\/span> <span style=\"color: #008c00;\">30<\/span><span style=\"color: #006600;\">px<\/span><span style=\"color: #800080;\">;<\/span>\n    <span style=\"color: #bb7977; font-weight: bold;\">border-radius<\/span><span style=\"color: #808030;\">:<\/span> <span style=\"color: #008c00;\">20<\/span><span style=\"color: #006600;\">px<\/span><span style=\"color: #800080;\">;<\/span>\n<span style=\"color: #800080;\">}<\/span>\n<span style=\"color: #808030;\">.<\/span>wtClose<span style=\"color: #800080;\">:<\/span><span style=\"color: #800000; font-weight: bold;\">hover<\/span> <span style=\"color: #800080;\">{<\/span>\n\t<span style=\"color: #bb7977; font-weight: bold;\">background<\/span><span style=\"color: #808030;\">:<\/span> <span style=\"color: #008c00;\">#<\/span><span style=\"color: #008000;\">841c1c<\/span><span style=\"color: #800080;\">;<\/span>\n<span style=\"color: #800080;\">}<\/span>\n.wtSlide<span style=\"color: #808030;\">.<\/span>wtSlidePosbottom <span style=\"color: #800080;\">{<\/span>\n    <span style=\"color: #bb7977; font-weight: bold;\">bottom<\/span><span style=\"color: #808030;\">:<\/span> <span style=\"color: #074726;\">auto<\/span><span style=\"color: #800080;\">;<\/span>\n    <span style=\"color: #bb7977; font-weight: bold;\">top<\/span><span style=\"color: #808030;\">:<\/span> <span style=\"color: #008c00;\">40<\/span><span style=\"color: #006600;\">px<\/span><span style=\"color: #800080;\">;<\/span>\n    <span style=\"color: #bb7977; font-weight: bold;\">border-radius<\/span><span style=\"color: #808030;\">:<\/span> <span style=\"color: #008c00;\">0<\/span><span style=\"color: #006600;\">px<\/span> <span style=\"color: #008c00;\">20<\/span><span style=\"color: #006600;\">px<\/span> <span style=\"color: #008c00;\">20<\/span><span style=\"color: #006600;\">px<\/span> <span style=\"color: #008c00;\">20<\/span><span style=\"color: #006600;\">px<\/span><span style=\"color: #800080;\">;<\/span>\n    <span style=\"color: #bb7977; font-weight: bold;\">left<\/span><span style=\"color: #808030;\">:<\/span> <span style=\"color: #008c00;\">10<\/span><span style=\"color: #006600;\">px<\/span><span style=\"color: #800080;\">;<\/span>\n    <span style=\"color: #bb7977; font-weight: bold;\">right<\/span><span style=\"color: #808030;\">:<\/span> <span style=\"color: #074726;\">auto<\/span><span style=\"color: #800080;\">;<\/span>\n<span style=\"color: #800080;\">}<\/span>\n.wtSlide<span style=\"color: #808030;\">.<\/span>wtSlidePosin <span style=\"color: #800080;\">{<\/span>\n    <span style=\"color: #bb7977; font-weight: bold;\">top<\/span><span style=\"color: #808030;\">:<\/span> <span style=\"color: #008c00;\">0<\/span><span style=\"color: #006600;\">px<\/span><span style=\"color: #800080;\">;<\/span>\n    <span style=\"color: #bb7977; font-weight: bold;\">border-radius<\/span><span style=\"color: #808030;\">:<\/span> <span style=\"color: #008c00;\">0<\/span><span style=\"color: #006600;\">px<\/span> <span style=\"color: #008c00;\">0<\/span><span style=\"color: #006600;\">px<\/span> <span style=\"color: #008c00;\">16<\/span><span style=\"color: #006600;\">px<\/span> <span style=\"color: #008c00;\">0<\/span><span style=\"color: #006600;\">px<\/span><span style=\"color: #800080;\">;<\/span>\n    <span style=\"color: #bb7977; font-weight: bold;\">left<\/span><span style=\"color: #808030;\">:<\/span> <span style=\"color: #008c00;\">0<\/span><span style=\"color: #800080;\">;<\/span>\n    <span style=\"color: #bb7977; font-weight: bold;\">right<\/span><span style=\"color: #808030;\">:<\/span> <span style=\"color: #074726;\">auto<\/span><span style=\"color: #800080;\">;<\/span>\n<span style=\"color: #800080;\">}<\/span>\n<span style=\"color: #696969;\">\/*Walkthrough JS END*\/<\/span>\n<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Guide your visitors through your website with this lightweight JavaScript-jQuery solution. Improve the user experience by presenting the features of the site in a quick interactive step by step bubble tour. Check out the live demo here.<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1,2,3,4,5,6],"tags":[],"class_list":["post-986","post","type-post","status-publish","format-standard","hentry","category-articles","category-css","category-freebies","category-html","category-javascript","category-jquery"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.7 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Website Walkthrough Intro Tour Bubbles - JavaScript Widget<\/title>\n<meta name=\"description\" content=\"Guide visitors through your website with this lightweight JavaScript-jQuery solution. Improve the user experience by allowing a quick tour.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/html-online.com\/articles\/website-walkthrough-intro-tour-javascript\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Website Walkthrough Intro Tour Bubbles - JavaScript Widget\" \/>\n<meta property=\"og:description\" content=\"Guide visitors through your website with this lightweight JavaScript-jQuery solution. Improve the user experience by allowing a quick tour.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/html-online.com\/articles\/website-walkthrough-intro-tour-javascript\/\" \/>\n<meta property=\"og:site_name\" content=\"HTML Online\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/htmlcoding\/\" \/>\n<meta property=\"article:published_time\" content=\"2019-09-09T10:23:31+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-09-13T08:36:45+00:00\" \/>\n<meta name=\"author\" content=\"HTML Editor\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"HTML Editor\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/html-online.com\/articles\/website-walkthrough-intro-tour-javascript\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/html-online.com\/articles\/website-walkthrough-intro-tour-javascript\/\"},\"author\":{\"name\":\"HTML Editor\",\"@id\":\"https:\/\/html-online.com\/articles\/#\/schema\/person\/019f9afa07f209153df0fecfc90b8c1d\"},\"headline\":\"Website Walkthrough Intro Bubbles &#8211; JavaScript Widget\",\"datePublished\":\"2019-09-09T10:23:31+00:00\",\"dateModified\":\"2024-09-13T08:36:45+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/html-online.com\/articles\/website-walkthrough-intro-tour-javascript\/\"},\"wordCount\":277,\"publisher\":{\"@id\":\"https:\/\/html-online.com\/articles\/#organization\"},\"articleSection\":[\"Articles\",\"CSS\",\"Freebies\",\"HTML\",\"JavaScript\",\"jQuery\"],\"inLanguage\":\"en-GB\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/html-online.com\/articles\/website-walkthrough-intro-tour-javascript\/\",\"url\":\"https:\/\/html-online.com\/articles\/website-walkthrough-intro-tour-javascript\/\",\"name\":\"Website Walkthrough Intro Tour Bubbles - JavaScript Widget\",\"isPartOf\":{\"@id\":\"https:\/\/html-online.com\/articles\/#website\"},\"datePublished\":\"2019-09-09T10:23:31+00:00\",\"dateModified\":\"2024-09-13T08:36:45+00:00\",\"description\":\"Guide visitors through your website with this lightweight JavaScript-jQuery solution. Improve the user experience by allowing a quick tour.\",\"breadcrumb\":{\"@id\":\"https:\/\/html-online.com\/articles\/website-walkthrough-intro-tour-javascript\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/html-online.com\/articles\/website-walkthrough-intro-tour-javascript\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/html-online.com\/articles\/website-walkthrough-intro-tour-javascript\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/html-online.com\/articles\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Website Walkthrough Intro Bubbles &#8211; JavaScript Widget\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/html-online.com\/articles\/#website\",\"url\":\"https:\/\/html-online.com\/articles\/\",\"name\":\"HTML Online Articles\",\"description\":\"Tips, tricks, tutorials\u2026\",\"publisher\":{\"@id\":\"https:\/\/html-online.com\/articles\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/html-online.com\/articles\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/html-online.com\/articles\/#organization\",\"name\":\"HTML Online\",\"url\":\"https:\/\/html-online.com\/articles\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/html-online.com\/articles\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/html-online.com\/articles\/wp-content\/uploads\/2022\/06\/logo.jpg\",\"contentUrl\":\"https:\/\/html-online.com\/articles\/wp-content\/uploads\/2022\/06\/logo.jpg\",\"width\":350,\"height\":350,\"caption\":\"HTML Online\"},\"image\":{\"@id\":\"https:\/\/html-online.com\/articles\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/htmlcoding\/\",\"https:\/\/www.linkedin.com\/in\/ferencdenes\/\",\"https:\/\/www.youtube.com\/channel\/UCn38Jw1sJzbjVHO95Zp0Sww\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/html-online.com\/articles\/#\/schema\/person\/019f9afa07f209153df0fecfc90b8c1d\",\"name\":\"HTML Editor\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/html-online.com\/articles\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/7c1d8f5e7f1dc3e261766a96ac50c6a907fa5c236e87ab73379c57c9114e92cd?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/7c1d8f5e7f1dc3e261766a96ac50c6a907fa5c236e87ab73379c57c9114e92cd?s=96&d=mm&r=g\",\"caption\":\"HTML Editor\"},\"description\":\"In 2013, while wrestling with a mountain of client articles and an uncooperative CMS, I decided enough was enough. So, I created an online HTML editor purely out of necessity (and mild frustration). What began as a tool for my own sanity quickly evolved into a gift for the world\u2014or at least for anyone trying to avoid breaking their website's code. Since then, I've shared my tech notes on my blog, which serves as both a handy reference and a digital diary of the adventures and misadventures of a coder.\",\"sameAs\":[\"https:\/\/www.linkedin.com\/in\/ferencdenes\/\",\"https:\/\/www.youtube.com\/@htmlg\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Website Walkthrough Intro Tour Bubbles - JavaScript Widget","description":"Guide visitors through your website with this lightweight JavaScript-jQuery solution. Improve the user experience by allowing a quick tour.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/html-online.com\/articles\/website-walkthrough-intro-tour-javascript\/","og_locale":"en_GB","og_type":"article","og_title":"Website Walkthrough Intro Tour Bubbles - JavaScript Widget","og_description":"Guide visitors through your website with this lightweight JavaScript-jQuery solution. Improve the user experience by allowing a quick tour.","og_url":"https:\/\/html-online.com\/articles\/website-walkthrough-intro-tour-javascript\/","og_site_name":"HTML Online","article_publisher":"https:\/\/www.facebook.com\/htmlcoding\/","article_published_time":"2019-09-09T10:23:31+00:00","article_modified_time":"2024-09-13T08:36:45+00:00","author":"HTML Editor","twitter_card":"summary_large_image","twitter_misc":{"Written by":"HTML Editor","Estimated reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/html-online.com\/articles\/website-walkthrough-intro-tour-javascript\/#article","isPartOf":{"@id":"https:\/\/html-online.com\/articles\/website-walkthrough-intro-tour-javascript\/"},"author":{"name":"HTML Editor","@id":"https:\/\/html-online.com\/articles\/#\/schema\/person\/019f9afa07f209153df0fecfc90b8c1d"},"headline":"Website Walkthrough Intro Bubbles &#8211; JavaScript Widget","datePublished":"2019-09-09T10:23:31+00:00","dateModified":"2024-09-13T08:36:45+00:00","mainEntityOfPage":{"@id":"https:\/\/html-online.com\/articles\/website-walkthrough-intro-tour-javascript\/"},"wordCount":277,"publisher":{"@id":"https:\/\/html-online.com\/articles\/#organization"},"articleSection":["Articles","CSS","Freebies","HTML","JavaScript","jQuery"],"inLanguage":"en-GB"},{"@type":"WebPage","@id":"https:\/\/html-online.com\/articles\/website-walkthrough-intro-tour-javascript\/","url":"https:\/\/html-online.com\/articles\/website-walkthrough-intro-tour-javascript\/","name":"Website Walkthrough Intro Tour Bubbles - JavaScript Widget","isPartOf":{"@id":"https:\/\/html-online.com\/articles\/#website"},"datePublished":"2019-09-09T10:23:31+00:00","dateModified":"2024-09-13T08:36:45+00:00","description":"Guide visitors through your website with this lightweight JavaScript-jQuery solution. Improve the user experience by allowing a quick tour.","breadcrumb":{"@id":"https:\/\/html-online.com\/articles\/website-walkthrough-intro-tour-javascript\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/html-online.com\/articles\/website-walkthrough-intro-tour-javascript\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/html-online.com\/articles\/website-walkthrough-intro-tour-javascript\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/html-online.com\/articles\/"},{"@type":"ListItem","position":2,"name":"Website Walkthrough Intro Bubbles &#8211; JavaScript Widget"}]},{"@type":"WebSite","@id":"https:\/\/html-online.com\/articles\/#website","url":"https:\/\/html-online.com\/articles\/","name":"HTML Online Articles","description":"Tips, tricks, tutorials\u2026","publisher":{"@id":"https:\/\/html-online.com\/articles\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/html-online.com\/articles\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Organization","@id":"https:\/\/html-online.com\/articles\/#organization","name":"HTML Online","url":"https:\/\/html-online.com\/articles\/","logo":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/html-online.com\/articles\/#\/schema\/logo\/image\/","url":"https:\/\/html-online.com\/articles\/wp-content\/uploads\/2022\/06\/logo.jpg","contentUrl":"https:\/\/html-online.com\/articles\/wp-content\/uploads\/2022\/06\/logo.jpg","width":350,"height":350,"caption":"HTML Online"},"image":{"@id":"https:\/\/html-online.com\/articles\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/htmlcoding\/","https:\/\/www.linkedin.com\/in\/ferencdenes\/","https:\/\/www.youtube.com\/channel\/UCn38Jw1sJzbjVHO95Zp0Sww"]},{"@type":"Person","@id":"https:\/\/html-online.com\/articles\/#\/schema\/person\/019f9afa07f209153df0fecfc90b8c1d","name":"HTML Editor","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/html-online.com\/articles\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/7c1d8f5e7f1dc3e261766a96ac50c6a907fa5c236e87ab73379c57c9114e92cd?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/7c1d8f5e7f1dc3e261766a96ac50c6a907fa5c236e87ab73379c57c9114e92cd?s=96&d=mm&r=g","caption":"HTML Editor"},"description":"In 2013, while wrestling with a mountain of client articles and an uncooperative CMS, I decided enough was enough. So, I created an online HTML editor purely out of necessity (and mild frustration). What began as a tool for my own sanity quickly evolved into a gift for the world\u2014or at least for anyone trying to avoid breaking their website's code. Since then, I've shared my tech notes on my blog, which serves as both a handy reference and a digital diary of the adventures and misadventures of a coder.","sameAs":["https:\/\/www.linkedin.com\/in\/ferencdenes\/","https:\/\/www.youtube.com\/@htmlg"]}]}},"_links":{"self":[{"href":"https:\/\/html-online.com\/articles\/wp-json\/wp\/v2\/posts\/986","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/html-online.com\/articles\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/html-online.com\/articles\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/html-online.com\/articles\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/html-online.com\/articles\/wp-json\/wp\/v2\/comments?post=986"}],"version-history":[{"count":6,"href":"https:\/\/html-online.com\/articles\/wp-json\/wp\/v2\/posts\/986\/revisions"}],"predecessor-version":[{"id":1198,"href":"https:\/\/html-online.com\/articles\/wp-json\/wp\/v2\/posts\/986\/revisions\/1198"}],"wp:attachment":[{"href":"https:\/\/html-online.com\/articles\/wp-json\/wp\/v2\/media?parent=986"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/html-online.com\/articles\/wp-json\/wp\/v2\/categories?post=986"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/html-online.com\/articles\/wp-json\/wp\/v2\/tags?post=986"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}