I have a div (a button) to which i need apply disable property when I hover mouse there.
<div class="button">click me</button>
It works fine when i do like below,
<div id="button" disabled>click me</button>
But i need to apply conditionally in my js,
$("#button").css("disbale");
Can anyone please help me.Thanks. But i want to disable it only on mouse hower.