Disabling certain days in jquery UI datepicker
I wrote a site for my local pub and it involved a restaurant booking section. The user could select a…
A bunch of ramblings about PHP programming, JQuery, MySQL and other 'stuff'
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…
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…
If you use the above to show a nice loading message when an AJAX call is performed, you may have…
If you use the above to show a nice loading message when an AJAX call is performed, you may have…
Say you want to use a selector to select all controls with a certain class, apart from a particular one.…
http://odyniec.net/projects/imgareaselect/ I have been using this excellent jQuery plugin which allows the user to draw a lasso around several objects…