1 2 3 4 5 6 7 8 9 10
<!DOCTYPE html> <script> function boom() { document.getElementsByTagName("tbody")[0].style.position = "absolute"; document.getElementsByTagName("table")[0].style.color = "green"; } </script> <body onload="boom();"> <table><tbody></tbody></table>