i am trying to call a function on right click on the select box which has disabled attribute. but i am unable to call a function.if i remove disabled attribute, then the right click is working.
function hello() {
alert('clicked');
window.event.returnValue = false;
}
#testSelect {
width: 100px;
height: 20px;
}
<select id="testSelect" oncontextmenu="hello()" disabled="true">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
</select>
How can i do this?