Hi, is it possible for the user to input a custom page title into a text field, press submit and for the current page they're on to change it's title? So, say I enter 'Google Seach - Results' into the field, that would then make the page title the same as the one I inputted? (By title, I mean the <title></title> tags) Possible? Thanks.
If you are using PHP, you could use a POST or a GET and echo the variable in the title tag. <? $title=$_GET['formfield']; ?> <title><? echo $title; ?></title> or use POST. Is that what you want?
<html> <head> <title>Title</title> </head> <body> <input type="text" id="newTitle" onkeyup="return document.title = newTitle.value"/> </body> </html> HTML: <html> <head> <title>Title</title> </head> <body> <input type="text" id="newTitle"/> <input type="button" onclick="return document.title = newTitle.value" value="Change Title" /> </body> </html> HTML: NJoy ....