$(document).ready(function(){ // set the wrapper width and height to match the img size $('#wrapper').css({'width':$('#wrapper img').width(), 'height':$('#wrapper img').height() }) //tooltip direction var tooltipDirection; for (i=0; i<$(".pin").length; i++) { // set tooltip direction type - up or down if ($(".pin").eq(i).hasClass('pin-down')) { tooltipDirection = 'tooltip-down'; } else { tooltipDirection = 'tooltip-up'; } // append the tooltip $("#wrapper").append("
\
" + $(".pin").eq(i).html() + "
\
"); } // show/hide the tooltip $('.tooltip-up, .tooltip-down').mouseenter(function(){ $(this).children('.tooltip').fadeIn(100); }).mouseleave(function(){ $(this).children('.tooltip').fadeOut(100); }) });