Reputation: 15
I've a good menu with a mouse-over horizontal submenu, but on my iPad I can't do mouse-over in the Chromebrowser. So you can't open the submenu because it is mouse-over.
How to make the menu mouse-over and clickable? (submenu will open when you hold your mouse on a tab and when you click on a tab)
Upvotes: 0
Views: 207
Reputation: 10158
There's no such event in touch devices (smartphone and tablets) as mouseover
nor mouseout
.
There are events like touchstart
, touchend
and touchmove
but they're corresponding to desktop's mousedown
, mouseup
and mousemove
.
When you put your finger on a touch screen, it's like you'd already mousedown'ed it.
Upvotes: 1