When I click on a disabled input on Chrome it's giving me the desired results but in Mozilla due to the disabled class, it isn't rendering anything. What do I do to make it work?
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script>
$(document).ready(function(){
$(".divclick").click(function(){
alert("jsk");
});
});
</script>
</head>
<body>
<div class="divclick" height="100px" width="100px" style="background:red;">
<input type="text" disabled>
</div>
</body>
Ps: already tried putting a wrapper around it. I wish only the desired Input