callback while hovering through dropdown items #1932
Answered
by
lubber-de
Berkdan
asked this question in
Modules (Modal, Dropdown, Popup, Calendar, Toast, ...)
-
Hi, Thanks |
Beta Was this translation helpful? Give feedback.
Answered by
lubber-de
Jan 11, 2021
Replies: 2 comments
-
It's not built-in but you can implement it easily on your own $('.ui.dropdown').dropdown({});
$('.ui.dropdown .item ').hover(function(){
console.log('You hovered over '+$(this).html())
}) |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
lubber-de
-
Brilliant! |
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
It's not built-in but you can implement it easily on your own
See https://jsfiddle.net/lubber/9ez0ofm3/5/