Why onfocusout event is not firing in firefox

Why onfocusout event is not firing in firefox

I was using onfcousout event of text box to fire some javascript those were firing in IE but were not firing in Firefox. Then  I found that onblur is firing on both Internet Explorer.

So do not use onfocusout event instead use onblur.

Tested on I.E 7.0

Firefox 3.0.

How to disable Asp.net Button with Jquery?



How to disable Asp.net Button with JQuery?

Following java script function disables an asp.net button. Tested in IE 7

<asp:Button ID=”Button1″ runat=”server”  Text=”Disable me” OnClientClick=”disAbleMe()” />

function disAbleMe() {
$(“#<%=Button1.ClientID %>”).attr(“disabled”,”true”);

}

You can try other attributes too.