How to make this css code cross browser compatible using jquery. this code only works on firefox and IE8. i wan to use in IE6 and 7 also.
ol {list-style-type: none;}
li:before {content: "(" counter(section, lower-alpha) ") ";}
li { counter-increment: section;}
this is html
<ol class"fnotes">
<li> item 1 </li>
<li> item 2 </li>
<li> item 3 </li>
</ol>
and i need this output
(a) item 1
(b) item 2
(c) item 3