I'm trying to de-couple my dependence on JQuery, as such - I have the following JQuery:
$("#myDIV li").eq(1).html('...');
$("#myDIV li").eq(2).html('...');
$("#myDIV li").eq(3).html('...');
How do I perform the above code without using JQuery (just plain JavaScript).