I am using a self-styled, numbered list. How can I read the start-attribute and add it to the counter with CSS?
HTML
Number
To support
$('ol[start]').each(function() { var val = parseFloat($(this).attr("start")); $(this).find("li").first().attr("value", val); });
jQuery script is based on Daniel Tonon's input.