Archive for the ‘JavaScript’ Category

Rounded Corners in Internet Explorer

A free JavaScript library for creating gorgeous rounded corners for HTML block elements i.e. DIVs. Supports anti-aliasing, borders and background images.
As you know already Firefox will let you create rounded corners without using images by simply implementing something simular to this in your styles:
.round { -moz-border-radius:12px; -webkit-border-radius:12px; }
To get this same effect [...]

More »

Utilize Google’s Ajax Libraries API

The problem: loads of websites around the internet using the exact same javascript file. The file is a whopping 100KB in size. Since this same file resides on each website’s server, the file is downloaded and cached for each individual website. Lots of load time for same file.
The solution: Google AJAX Libraries APIs. Google hosts [...]

More »

Navigation Menus

1 – How To Create A Mootools Inspired Navigation Effect Using jQuery
As you know there are a host of competing javascript libraries around these days. Though I prefer jQuery, I’ve always liked the way the menu on MooTools worked. So in this tutorial we’ll recreate that same effect … but we’ll do it in jQuery!

2 [...]

More »