this should do

$(document).ready(function() {
  $('a').each(function() {
    var thisHash = this.hash;
    $(this).cluetip({
          sticky: true,
      mouseOutClose: true,
      closePosition: 'title',
      closeText: '<img src="cross.png" alt="close" />',                         
      ajaxCache: false,
          activation: 'click',
          showTitle: true,
      ajaxSettings: {
        cache: false
      },
      ajaxProcess: function(data) {
        var $div = $('<div></div>').append(data).find(thisHash);
          return $div;
      }
    });
  });
});


2009/4/22 followerofjesus <joshua...@gmail.com>

>
> I think ClueTip is great, but the only thing I think it needs is an
> option to load just a div on an external page rather than the a whole
> external page. Like is available in BeautyTip
>
> Does anyone know how to mod ClueTip to do that?
>
> Regards from Josh
>



-- 
////////////////\\\\\\\\\\\\
 strikingconcepts
\\\\\\\\\\\\\\\\////////////

www.strikingconcepts.nl
          webdesign
        06 450 860 83
amsterdam - groningen

Reply via email to