Posting Slack message on Google Docs spreadsheet cell update
We’ve been using a bit of a google doc recently for logging stuff, and sometimes cells get missed. I wanted…
A bunch of ramblings about PHP programming, JQuery, MySQL and other 'stuff'
We’ve been using a bit of a google doc recently for logging stuff, and sometimes cells get missed. I wanted…
I recently had to create a site for an education facility, and they turn on Compatibility mode for all their networked…
I wrote a site for my local pub and it involved a restaurant booking section. The user could select a…
Quite often I have to convert datasets from one source to another target. Sometimes I can only export them as…
I wanted to pass a simple key/value string to an Ajax request, but you cannot simply use the variable as…
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…
I’ve seen a few methods of this using over-elaborate JavaScript, when its really not necessary. All you need to do…
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…