by Garth | May 17, 2020 | HTML, Javascript, Jquery
<div class=”form-row”> <div class=”container”> <label class=”ants-label-light” >Club Emblem</label> </div> <div class=”input-group mb-6 container justify-content-center”> <div...
by Garth | Mar 19, 2020 | Javascript
document.onkeydown = function() { switch (event.keyCode) { case 116 : //F5 button event.returnValue = false; event.keyCode = 0; return false; case 82 : //R button if (event.ctrlKey) { event.returnValue = false; event.keyCode = 0; return false; } }...
by Garth | Oct 14, 2019 | Javascript
Create a page and add this to it. It will run the page every time someone loads the page or for whatever duration you set yourself. setTimeout(function() { location.reload(); }, 5000);
by Garth | Sep 5, 2019 | Javascript, Tools
Documentation can be found hereOwl Carousel https://owlcarousel2.github.io/OwlCarousel2/Add font awesome as well because font awesome is awesome. wp_enqueue_style(‘fontawesome’, ‘https://use.fontawesome.com/releases/v5.2.0/css/all.css’);...
by Garth | Jan 8, 2019 | CSS, Javascript, Outsystems
View – Forum Discussion. View – Including external CSS in outsystems. View – Including external javascript in outsystems MOBILE application. View – Including external javascript in outsystems WEB application View – Javascript links...
by Garth | Aug 2, 2018 | Javascript, Jquery
document.getElementById(‘id_goes_here’).style.display = ‘none’;