Sigh
I keep getting strange problems with IE 8.
I have this
<input name="Btn_Edit" disabled="disabled" id="Btn_Edit" type="button" value="Edit"/>
$(function ()
{
$('#Btn_Edit').live('click', function ()
{
alert('hi');
});
});
So in every other browser this alert would never get trigger as my button is disabled. In IE 8 it goes into my edit button and triggers the alert.
I don't know why.
You can see for yourself it. Just load up IE 8 and try it.
However if I change it to this.
It seems to work. I still dont' know why it brings up a different cursor instead of a pointer.
Anyways the problem seems to be with live click event.