html5 - how to set input status checked on hover only via Css? -


how can set input status checked on hover via css? setting on click need on hover, how can that?

here example

well not possible...with css can't create environment in radio input checked on hover because in css can style elements cannot fire event.

you have use little js achieve it.

here code

$('input').on('hover', function(){   $(this).trigger('click'); }); 

above code trigger click on hover of same element.


Comments

Popular posts from this blog

wireshark - USB mapping with python -

c++ - nodejs socket.io closes connection before upgrading to websocket -

Deploying Qt Application on Android is really slow? -