- var Hint = new Tips($$('.poptip'), {
- showDelay: 500, //default is 100
- hideDelay: 100, //default is 100
- offset: {
- 'x': 40, //I would like to adjust this in dependency of the width or hight of the tip element
- 'y': -110 //not static
- },
- fixed: false, //default is false
- className: 'test_tip', //default is .tip-wrap.
- onShow: function(tip,el) {
- tip.fade('in');
- },
- onHide: function(tip,el) {
- tip.fade('out');
- }
- });
i'am trying to get the high of the tip element to adjust the offset. How to do that?
Where I have to place the this.getHight()?
My code:


