This repository has been archived by the owner on Nov 9, 2024. It is now read-only.
Replies: 1 comment
-
@Toubef Hi, Were you able to implement this use-case? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I'm trying to get tippy a button onClick event fired inside tippy html content.
For some reason I cannot not get this to work.
Here is my tippyJs config
returnTippy = tippy('#showTemperatureLocation',{ content: info, placement: 'bottom', animation: 'shift-toward-extreme', //trigger: 'click', allowHTML: true, interactive: true, delay: [0, 1000], onShown: function() { $("#refreshWeather").off("click").on("click", function(){ alert('Weather is refreshing'); }); } });
Am I doing something wrong or why cannot I not get thar alert shown?
Please advice.
Thanks.
-Toube
Beta Was this translation helpful? Give feedback.
All reactions