![]() |
lefty 2/25/2019 |
Hello, i inserted two butons and want to extend them with mouseover-tooltips. Can someone please point in the right direction? I tried the following in the JavascriptonloadEvent:
|
T
|
taumic author 2/26/2019 |
Thank you, John, |
![]() |
Sergey Kornilov admin 2/26/2019 |
Modifying HTML code is definitely a bad idea. Your Javascript approach will work, you just need to make sure your code is correct. Here is how to figure out correct item attributes.
$("span[data-itemid=custom_button1]").attr('title', 'my title'); |
T
|
taumic author 2/26/2019 |
Thank you Sergey - Fantastic! |