+ 1
How to display folder name or file name as web page title?
I want to display titles dynamically I.e. even if I add new file or directory it shows it's name as title..
3 Answers
+ 8
Then totally remove title tagâŠâŠ
+ 7
Try that:
<body onload="document.title=window.location;">
... maybe you can even put this in <head> as soon as you want ( 'document' object should be already available ):
<script>document.title=window.location;</script>
Reference of 'location' object ( if not all url wanted to be displayed ^^ ):
https://developer.mozilla.org/en-US/docs/Web/API/Location
0
never thought so..
thanks