Если вы имеете в виду без использования jQuery:
// If you only want to operate on the first match
setTimeout(function(){
document.querySelector('.green.bar .inner').style.width = '20%';
});
Или:
// If you want to operate on all matches
setTimeout(function(){
var elements = document.querySelectorAll('.green.bar .inner');
for(e in elements){
elements[e].style.width = '20%';
}
});