<html> <head> <title></title> <script language="javascript"> function EditText(){ // tìm thẻ có class="vnfree" var getClass = document.getElementsByClassName("vnfree"); // alert ra text của thẻ đó alert(getClass[0].innerText); } </script> </head> <body> <div id="MyName" class="vnfree">chào bạn đến với vnfree.net</div> <input type="button" onclick="EditText()" value="Get Text" /> </body> </html>