Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • If you use id’s to get to your specific lists e.g <ul id=”thelist”>

    You could do the following javascript, to add whatever you want to before the contents of your li tags.

    Onload it grabs the right ul tag, puts all the li into an array, we loop over them and get the text between the li tags and add whatever character you want before it.

    You could also put it in an external javascript file and load that between the coditional comments.

    <!–[if IE]>
    <script type=”text/javascript”>
    window.onload=function() {
    Restyle();
    }
    function Restyle() {
    lis=document.getElementById(‘thelist’).getElementsByTagName(‘li’);
    for(i=0;i<lis.length-1;i++){
    lis[i].firstChild.nodeValue+=”? “;
    }
    }
    </script>
    <![endif]–>

Viewing 2 replies - 1 through 2 (of 2 total)