Hi
In below code i want to disable Delete button
Thanks
Download FREE API for Word, Excel and PDF in ASP.Net:
Download
dharmendr
on Mar 23, 2022 03:12 AM
on Mar 23, 2022 03:13 AM
2
Hi ramco1917,
There is no disabled attribute for anchor tag. If you don't want something to be linked then you'll need to remove the anchor tag altogether or you can set the href attribute to javascript:void(0).
<style type="text/css">
.disabled {
color: black;
}
</style>
<a class="disabled" href="javascript:void(0)">ASPSnippets</a>
Demo