$tb('#example').innerText = 'Content Changed';
npm install tb-no-more-get-document-by-id ### Install
npm install tb-no-more-get-document-by-id
copy dist folder to your public directory
``javascript
//target element with id='test'
$tb('#test').innerText = 'Content Changed';
//target all div elements
let tb = $tb('div');
for(let i =0; i<= tb.length-1; i++) {
tb[i].innerHTML= 'Content Changed';
}
//target all elements with a class of example
let example = $tb('.example');
for(let i =0; i<= example.length-1; i++) {
example[i].innerHTML= 'Content Changed';
}
//input setting and getting values
$tb('#test').value = 15;
console.log($tb('#test').value);
``