This is just a quick post to explain what is going on & to mention something big in the world of jQuery. You might have noticed that posts are a little few and far between lately. Well that’s because I’ve had a lot going on. One of the sites I maintain had their forum hacked. I had to recover the database, and then manually move all the posts to a more secure forum software. Believe me that is not something you want to experience. I’ve also been busy helping with a few other sites that will soon be launched, can’t say much else for now though.

I’ve also been considering getting into software development rather than just sticking to web development. By that of course I’m talking about developing iPhone/iPod Touch apps. The problem is that I have next to zero experience with C and have no idea where to start. If anyone can give me any tips on how to get started with app development please drop me a comment, or an email.

Finally you may have noticed that jQuery 1.4 has been released & they have a feature I have honestly been waiting for, for a very long time. That is the delay feature. If you wanted to delay an animated effect you always had to use setTimeout or a jQuery plugin. Well no more, delay is now a core function as of jQuery 1.4. Useage is simple:

$('#bar').fadeOut(400).delay(800).fadeIn(400);

Anyway that’s all for now. I just wanted to update you on what’s happening round here & express my excitement at the inclusion of the delay function into jQuery. There is, of course, lot’s of other new features in jQuery 1.4, but delay is my favourite. ;)