Auto-complete Lists in HTML5
Jquery is everywhere, its good. People like it. Its easy(ish) for beginners to create great web apps. It’s also large,…
A bunch of ramblings about PHP programming, JQuery, MySQL and other 'stuff'
Jquery is everywhere, its good. People like it. Its easy(ish) for beginners to create great web apps. It’s also large,…
Annoying to find, so a quick easy to find snippet here <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <title>New…
If you ever wanted to prevent certain IP addresses from accessing your site, you can easily acheive this in the…
Say you are using Google Web fonts for some CSS. Well, if you don’t include the correct bits you may…
Had some CSS that worked in Chrome, but not Firefox or Opera. Firebug reported this: Turns…
I’ve seen a few methods of this using over-elaborate JavaScript, when its really not necessary. All you need to do…
Simple one. $(document).on('#element', 'keyup', function(event) { if (event.keyCode == 13) { event.preventDefault(); //do some other stuff } }); This doesn’t…
So you want a little funky AJAX loader? Add this to your JS main core file…: $(document).ready(function() { //initiate an…
If you are trying to add a ‘total’ or a report footer and its getting split over the penultimate and…
Say you want to position something within its container, then the element you are trying to position needs to have:…