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,…
I wrote a site for my local pub and it involved a restaurant booking section. The user could select a…
I wanted to pass a simple key/value string to an Ajax request, but you cannot simply use the variable as…
I often have the problem that the autosuggest isn’t flexible enough, and I need to show contact name AND client…
I needed a custom sort column for jquery tablesorter (http://tablesorter.com/docs/) for dates in the format of 12-Aug-2013 as the default…
wkhtmltopdf has a bug as a result of a webkit bug. This means that the nice css styles for table…
If you need to use :contains() as a selector but need a case insensitive one, you need to extend jQuery…
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 use the above to show a nice loading message when an AJAX call is performed, you may have…