This site is mobile accessible. Press the "Tap Here" button to use a different font-size.
Smartphone icons created by Freepik - Flaticon
Return the element with id="id01":
var myElement = $("#id01");
var myElement = document.getElementById("id01");
Return all <p> elements:
var myElements = $("p");
var myElements = document.getElementsByTagName("p");
Return all elements with class="intro".
var myElements = $(".intro");
var myElements = document.getElementsByClassName("intro");
Return a list of all <p> elements with class="intro".
var myElements = $("p.intro");
var myElements = document.querySelectorAll("p.intro");
Eventually the navigation links, above, will be replaced by these (previous) and (next) buttons below.
JavaScript icons used in the buttons provided by ICONS8.COM. Smartphone icons created by Freepik - Flaticon