Hi there,
I'm trying to implement the basic tooltip from Kendo UI. The tooltip works perfectly when you load the page and hover over an item for the first time. However, the carat does not show up on all consecutive hovers if your mouse is not in a specific spot - even if your mouse is still on top of the hover item.
What's causing this?
<!DOCTYPE html>
<
html
>
<
head
>
<
style
>html { font-size: 12px; font-family: Arial, Helvetica, sans-serif; }</
style
>
<
title
>Tooltip not working</
title
>
</
head
>
<
body
>
<
label
class
=
"control-label"
for
=
"experience"
>Tooltip</
label
>
<
p
class
=
"tooltipItems"
>
<
a
href
=
""
title
=
"test tooltip"
>Hover over me</
a
>
<
a
href
=
""
title
=
"test tooltip"
>Me too!</
a
>
</
p
>
<
p
class
=
"tooltipItems"
>
<
a
href
=
""
title
=
"test tooltip"
>Me too!</
a
>
</
p
>
<
script
>
var tooltip = $(".tooltipItems").kendoTooltip({
filter: "a",
position: "top"
}).data("kendoTooltip");
</
script
>
</
body
>
</
html
>