Answers for "can i apply disable attribute to <a> tag"

4

disable a tag

.disable{
	pointer-events:none;
}

with jquery add this class to you element to disable is and remove class to enable it
Posted by: Guest on May-28-2020
0

disabled attribute is not working in html

try to use disabled="disabled":

<input type="text" id="txtEditAlternate" class="form-control" name="alternate" disabled="disabled" />

I hope it will work for you.
Posted by: Guest on December-05-2020

Browse Popular Code Answers by Language