we love web standards, css, html, actionscript, php, javascript, accesibility and usability

jQuery

Time Wasted

Thursday, March 6th, 2008

I’m currently ensuring some scripts I’m working on will be GNU/GPL compliant in hopes to avoid being sued for porting technology from a corporate identity with the mental capacity of a 2 years old. In the meantime enjoy this.
Windows vs. Mac vs. Linux

Posted in gnu gpl, intellecual property, jQuery, javascript, php, random mess, work | No Comments

jQuery Image Swap

Friday, October 12th, 2007

jQuery does a fantastic job at simplifying JavaScript. Below is an example for those of you still relying on DreamWeaver’s Image Rollover (MM Image Swap). The better alternative is using proper image replacement techniques.

$(’img#nav1′).hover(function() {
$(this).attr(”src”,”/images/headerNav/1-over.gif”);
}, function() {
$(this).attr(”src”,”/images/headerNav/1.gif”);
});

<img src=”1.gif” id=”nav1″ />
And there you have it! Coming up next is the SEO case study of duffynewport.com.

Posted in i came as a rant, jQuery, work | No Comments