Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to change the title of web page tab when it is opened through <h:commandLink target='_blank'>. How can i set this?

share|improve this question
Not possible, unless you'll use JavaScript instead. – Shadow Wizard Nov 7 '11 at 9:09

1 Answer

up vote 2 down vote accepted

this is one method:

url = www.domain.com?title=popupwindowtitle

window.open(url)

-popup windows code-

<html>
<title><?php echo $_GET['title'']?></title>
</html>

not sure if there's a way to directly set the title, hope this helps.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.