zudolab jqTooltip

width / height

You can specify the tip's width/height.

Specify the css height/width value as "width" and "height".
Default value of "width" and "height" is "auto".

new jqTooltip({
    selector: "p.widthHeightTest1",
    behavior: "chaseHover",
    width: "200px"
});

width: '200px'

new jqTooltip({
    selector: "p.widthHeightTest2",
    behavior: "chaseHover",
    height: "200px"
});

height: '200px'

new jqTooltip({
    selector: "p.widthHeightTest3",
    behavior: "chaseHover",
    width: "auto",
    height: "auto"
});

width: 'auto', height: 'auto' (default)

new jqTooltip({
    selector: "p.widthHeightTest4",
    behavior: "chaseHover",
    width: "200px",
    height: "200px"
});

width: '200px', height: '200px'

new jqTooltip({
    selector: "p.widthHeightTest5",
    behavior: "chaseHover",
    width: "7em",
    height: "7em"
});

width: '7em', height: '7em'