I have this code below to disable the buttons, its disabled. When I mouse over, it shows the crossed round icon, so all good. However, the issue is, when I click, behind the scene, it invokes click action or things that we expect to see on clicking when its not disabled.
I browsed the net and didn't fnd any solution except change from attr to prop. I am going to do this now and see, but sadly it works fine in Deb and not in UAT.
Any help please?
$("#IsMarriedlbl").attr("disabled", true);
$("#IsSinglelbl").attr("disabled", true);
$("#IsWidowedlbl").attr("disabled", true);
$("#Divorcedlbl").attr("disabled", true);