So, I was trying to use CSS which will give the onMouseDown impression of the button when it is disabled, to allow the user to know it is disabled, visually.
not sure what to put inside .disableApproveButton was looking for mouse down and stuff....any ideas? thanks
<td><button class="disableApproveButton" type="submit" name="btnApprove" @(string.IsNullOrEmpty(Model.Customer.Email) ? "disabled" : string.Empty)>Approve</button></td>
.disableApproveButton
{
//make selection here
}