jHelperMod 1.0 demo

jHelperMod is jQuery plugin, based on jHelpertip

Click activated. Show DIV#tip1 with tooltips style.

$("#test1").jHelperTip({
          dC:"#tip1"
});

Hover activated. Show Ajax content with tooltips style

$("#test2").jHelperTip({
          trigger: "hover",
          source: "ajax",
          type: "GET",
          url: 'ajax.html',
          data: 'name=Kean&age=63'
});

Click activated. Show DIV#tip1 with LightBox Style

$("#test3").jHelperTip({
          trigger: "click",
          dC:"#tip1",
          position:"absolute"
});

Click activated. Show Image with LightBox Style

$("#test4").jHelperTip({
          trigger: "click",
          source: "image",
          url: 'http://www.google.ru/intl/en_com/images/logo_plain.png',
          position:"absolute"
});