You can specify the tip's width caliculation behaviour to change this value.
This is effective only if you specified width as "auto". (default width value is "auto")
If you set this value true, jqTooltip respects the tip's natural width and tried to keep it.
If you set this value false, tip's width will be caliculated accordiong to the mouse position.
Default value is false.
Set true if you want to fix the tips width as the natural width.
This option is difficult to explain... Please check the following examples.
You can check this result to set your mouse on the right side of the following elements.
new jqTooltip({
selector: "p.keepNaturalWidthTest1",
behavior: "chaseHover",
keepNaturalWidth: true
});
'keepNaturalWidth:true'
new jqTooltip({
selector: "p.keepNaturalWidthTest2",
behavior: "chaseHover",
keepNaturalWidth: false
});
'keepNaturalWidth:false' (default)