Hi everyone,
Let me know how to find the value of Title (<title>) Tag of HTML Page using JavaScript?
This way
<html> <head> <title>Page Title</title> </head> <body> <script type="text/javascript"> window.onload = function () { var title = document.title; alert(title); }; </script> </body> </html>
Demo
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.