<html> <head> <title></title> <script language="javascript"> function EditText(){ // tìm thẻ có id="MyName" var IdName = document.getElementById("MyName"); // alert ra text của thẻ đó alert(IdName.innerText); } </script> </head> <body> <p id="MyName">vnfree.net</p> <input type="button" onclick="EditText()" value="Get Text" /> </body> </html>