9

I was wondering if there is any possible way to set the title of a page to empty/transparent.

I have tried each of the following titles without success:

<title></title>
<title> </title>
<title>&nbsp;</title>

Using them, would keep the default title of the page, just like it would be without the code.

The closest I got was with <title>.</title>.

I'm using Chrome.

J. Vie
  • 113
  • 1
  • 12

1 Answers1

21

Here is one that works in my Windows Chrome - Chrome seems to remove known spaces. This one comes from https://www.cs.tut.fi/~jkorpela/chars/spaces.html

U+FEFF ZERO WIDTH NO-BREAK SPACE -><- No width (the character is invisible)

HTML:

<title>&#65279;</title>
mplungjan
  • 169,008
  • 28
  • 173
  • 236
  • I don't suppose there's any way to remove the [title attribute](https://www.w3schools.com/tags/att_global_title.asp) right? I guess it's [not a big deal](http://i.imgur.com/g7NQ5s6.png). – J. Vie Feb 21 '17 at 10:59
  • I think if you remove it, you will have the page name again – mplungjan Feb 21 '17 at 11:04
  • 1
    Aren't you about to earn the [html gold badge](http://stackoverflow.com/help/badges/134/html)? :) – J. Vie Feb 21 '17 at 12:03
  • 1
    Just for the record, I tested out the other ones in the list of your [awesome link](https://www.cs.tut.fi/~jkorpela/chars/spaces.html) and I found out that [`᠎`](https://unicode-table.com/en/180E/) and [`​`](https://unicode-table.com/en/200B/) also works. Another extra one, [`‎`/`‎`](https://unicode-table.com/en/200E/), which I found out in [this answer](http://stackoverflow.com/a/23558385/7598088). – J. Vie Feb 21 '17 at 14:00
  • 1
    @J.Vie I could mark as duplicate but I am using a different char ;) – mplungjan Feb 22 '17 at 05:13
  • @J.Vie Got a "Nice answer" AND "Enlightened" badge for this one too :) – mplungjan Sep 23 '18 at 06:53