<html><head>
<script language="javascript" type="text/javascript">
function is_this_what_u_want() {
var tag;
tag = document.getElementById('divid').getElementsByTagName('li');
// remember 0 call the 1st element and so on
// so now "This is the first footnote" is the tag[0]
// lets append to hit for fun
tag[0].appendChild(document.createTextNode(' plus this text lol'));
}
</script>
</head><body>
<div id=divid>
<OL>
<LI> This is the first footnote</LI>
<LI> This is the second footnote</LI>
</OL>
</div>
<a href="javascript:is_this_what_u_want()">test it</a>
</body></html> ---------------------------------------
someone knowledge ends where
someone else knowledge starts