How to add brackets (a) to ordered list? compatible in all browsers.
- by jitendra
I have to show like
(a)
(b)
(c)
Update:
I found a CSS way
ol {list-style-type: none;}
li:before {content: "(" counter(section, lower-alpha) ") ";}
li { counter-increment: section;}
but it not works in IE 7 and lower.
How to enable support of counter in all other browsers using jquery which do not support natively.?