"What we think, we become." - Buddha quote provided by QuotesDaddy.com

Posts Tagged ‘jquery’

Fading PNGs in Internet Explorer 7 and 8

One issue I recently came across was the desire to use PNGs as the background of a tooltip, and to fade the tooltip in and out of view (you can see the functionality here by hovering over 'details' or clicking on 'buy now'). In case you haven't tried this before - IE7 and IE8 generally do not react well to fading PNGs, putting a black background under the portions of the PNG which have alpha transparency - and generally making the element look less than ideal. Luckily, there is a fairly easy workaround for this situation as long as you are not trying to do too much with the pngs. It will even fix pngs in IE6 for you too (in fact, that is the real purpose of the script). That workaround is the jQuery ifixpng2 plugin, written by ...

A Quick Code Igniter and JQuery Ajax Tutorial

this is a re-post of an August, 2007 article from my old site. It's still generating a lot of traffic, so I didn't want all of the users who may be looking for it to lose access.
This tutorial assumes a basic working knowledge of Code Igniter. If you have never used CI before, please refer to the framework documentation In the old days (2 years ago), working the Javascript magic to create a cool AJAX based event took a fairly decent working knowledge of the mechanisms behind the process. With the increasing popularity of Javascript libraries however, this type of functionality became available to the web site hobbyist, and was made much easier for the web site profess...

jQuery Plugin: Omnitip

I ended up developing the omnitip jquery plugin because I needed something a little more robust than any of the other jquery based tooltips that I was able to find. There may or may not have been one that would have met my needs and I just didn't see it, but regardless I believe I benefited from the experience of building a jquery plugin, and hopefully you will benefit as well.

About Omnitip

Omnitip is a tooltip plugin (you can see it at work on the homepage). What I THINK I have added to other tooltips in terms of functionality is:

  1. The ability to maintain the tooltip while hovering over it - thereby allowing things like links and forms to be loaded inside the tip
  2. Ability to send included forms through ajax components and lo...