hi..
here is the code that is tested in Chrome and firefox ,
$('#<%=LinkButton1.ClientID%>').toggleClass("disabledLink"); //This will simply toggle the class
Use the Below CSS
#<%=LinkButton1.ClientID%>.disabledLink{
z-index:-1; /*Make it not clickable*/
position:relative;
opacity: .5; /*Lighter*/
}