Charles Anderson
Charles Anderson

Reputation: 20039

How do you change the tooltip text of an HTML title element?

If I mouse over the tab of a page in a web browser, a tooltip appears showing that page's full title. I would like to change that tooltip; e.g.

<title title="Some other text">Name of the page</title>

Is this even possible?

Upvotes: 3

Views: 465

Answers (2)

Murtaza Hussain
Murtaza Hussain

Reputation: 4285

There is no solution to update title as tooltip of title tag in head

Upvotes: 0

Khalid Ali
Khalid Ali

Reputation: 1224

No, not possible.

You can't change the tooltip of the page tab to be different than the content of the <title> element.

Upvotes: 2

Related Questions