Go to content

Automatic Modal Popup with UIKit and jQuery

Worse than 404 pages.  Worse than those spam emails that appear in your inbox.  Even worse than those chain letters your mother keeps sending, thinking you might get a small chuckle or learn something new.  Yes, possibly worse than all of the above put together, is the internet modal popup. There was a time in…

Changing the URL in a local database

When it comes to assisting the development and maintenance of a website, it may require you to have a copy of the website on your localhost.  Sounds easy enough, right?  Just download the site onto your computer, go offline and poof!  A website clone right one your development device. This may be true for small…

Load A Random Image With jQuery

NOTE: This article was updated on March 12th, 2017 with a revised code.  Irrelevant information have been crossed out and/or removed. In a recent tutorial I showed how you can set up a page to load a random image using just JavaScript. One of the drawbacks with that approach is the page needs to load…

Load A Random Image With Javascript

NOTE: This article was updated on March 11th, 2017 with a revised code.  Irrelevant information have been crossed out and/or removed. Being able to rotate randomly through a selection of images is a simple way of keeping a webpage interesting and fresh. This tutorial aims to show you how to load a random image each…

Create An Animated Slideshow With CSS3

This tutorial aims at showing you how to create an animated four panel slideshow using css3. NOTE: This tutorial assumes you have some kind of reset stylesheet and autoprefixer connected to your project. THE HTML <ul class=”slideShow”> <li class=”slide1″></li> <li class=”slide2″></li> <li class=”slide3″></li> <li class=”slide4″></li> </ul> It’s as simple as creating an unorganized list and…