jQuery(document).ready(function($) { $('a.kswptt_qtip').cluetip({ cluetipClass: 'qtip', width: 350, cluezIndex: 10000, dropShadow: false, hoverIntent: false, showTitle: false, positionBy: 'bottomTop', sticky: false, arrows: true, tracking: false, local:true, clickThrough: false, mouseOutClose: true, onActivate: function(e) { $('#cluetip-outer').css({backgroundColor: '#ffffff'}); $('#cluetip-title').css({backgroundColor: '#ccc'}); return true; } }); }); jQuery(document).ready(function($) { $('a.kswptt_qtip_sticky').cluetip({ cluetipClass: 'qtip', width: 350, cluezIndex: 10000, dropShadow: false, hoverIntent: false, showTitle: false, positionBy: 'bottomTop', sticky: true, arrows: true, tracking: false, local:true, clickThrough: false, mouseOutClose: true, closePosition: 'top', closeText: 'close', onActivate: function(e) { $('#cluetip-outer').css({backgroundColor: '#ffffff'}); $('#cluetip-title').css({backgroundColor: '#ccc'}); return true; } }); }); jQuery(document).ready(function($) { $('a.kswptt_qtip_clickthru').cluetip({ cluetipClass: 'qtip', width: 350, cluezIndex: 10000, dropShadow: false, hoverIntent: false, showTitle: false, positionBy: 'bottomTop', sticky: false, arrows: true, tracking: false, local:true, clickThrough: true, mouseOutClose: true, onActivate: function(e) { $('#cluetip-outer').css({backgroundColor: '#ffffff'}); $('#cluetip-title').css({backgroundColor: '#ccc'}); return true; } }); }); jQuery(document).ready(function($) { $('a.kswptt_qtip_stickthru').cluetip({ cluetipClass: 'qtip', width: 350, cluezIndex: 10000, dropShadow: false, hoverIntent: false, showTitle: false, positionBy: 'bottomTop', sticky: true, arrows: true, tracking: false, local:true, clickThrough: true, mouseOutClose: true, closePosition: 'top', closeText: 'close', onActivate: function(e) { $('#cluetip-outer').css({backgroundColor: '#ffffff'}); $('#cluetip-title').css({backgroundColor: '#ccc'}); return true; } }); });