tags:

views:

50

answers:

5

Hi,

is it possible to have javascript appear in the title tag on a web page?

Cheers

Jules

+2  A: 
aioobe
A: 

No .. as per my knowledge you can;t add javascript to a title tag

anishmarokey
+2  A: 

JavaScript doesn’t normally “appear” anywhere. However, the title element can only contain text, not markup, so if you insert a script tag there it will be displayed literally.

jleedev
A: 

Yes.

<title>javascript !!</title>
Damo
+1  A: 

I'm assuming what you want to do is to use javascript to alter what's being displayed in the title bar. That can still be achieved by setting document.title - although not from within the actual <title> tags.

David Hedlund