Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR HTML

how to disable li tag in html

.disabled {
    pointer-events:none; //This makes it not clickable
    opacity:0.6;         //This grays it out to look disabled
}

html
<li class="disabled">disable</li>
 
PREVIOUS NEXT
Tagged: #disable #li #tag #html
ADD COMMENT
Topic
Name
7+4 =