If my original function was:
document.getElementsByClassName(\'blah\')[9].innerHTML = \'blah\';
...how would I change that so I get that sa
You should also just be able to use jQuery's get() method:
$('.blah').get(9)
jQuery objects also function as indexed arrays as returned elements, so this should also work:
$('.blah')[9]