views:

25

answers:

3

How to create the effect like trulia when you hover on the avatar?

http://www.trulia.com/voices/Home_Buying/Why_are_there_only_homes_listed_under_quot_Recen-164127

A: 

Check out jQuery Ajax Tooltip

Vinodh Ramasubramanian
A: 

This is the basic idea:

  1. Show div on mouseenter()
  2. Load data via $.ajax and append it to div
  3. Hide div on mouseleave()
Darmen
A: 

You may want to look into this list, it shows quite a few plugins that creates such tooltips:

http://www.webdesignbooth.com/15-jquery-plugins-to-create-an-user-friendly-tooltip/

neo