Correctly POSTing boolean values in jQuery

When I’m building Javascript/jQuery based webapps, my go-to method of performing AJAX requests is via jQuery .post() using JSON. My code normally looks something like this… var postUrl = ‘/someurl.php’; var postData = {‘id’: 123, ‘data’: ‘xyz’, ‘bool’: true}; // … Continue reading

mtvan courier directory redesign

Following on from the mtvan booking page, the next update I’ve been working on is the long overdue revamp of the courier directory. This part of the site provides a listing of owner drivers and courier companies for other site … Continue reading

New mtvan booking page

I’ve just finished putting the final touches on a new mtvan booking page. It replaces a rather old and clunky version that I did when I was first starting out building dynamic websites in PHP. So what have I improved… … Continue reading

jQuery slideDown problem on IE7

Just run into a problem with IE7 when coding up a fairly complex web form that needs to shrink and grow depending on the amount of detail the user wants to enter. After an hour of fiddling around and a … Continue reading