Forum Moderators: open
I guess I could use a <span> </span> with a very small font size. However, I would also like to do this with the page title. For this, an invisible character is required I guess - is there such a character?
Any thoughts would be much appreciated.
Kaled.
<title>trade name</title>
<script>
window.onload=function(){document.title = "tradename";}
</script>
Then use the same technique on <span>s that contain your <span>trade name</span>.
As an added feature, it degrades nicely for users that have j/s disabled.
I found this page
[cs.tut.fi...]
It talks exclusively about unicode spaces. However, I've always had a bit of a mental block with all things remotely related to funny characters.
Two characters seem likely candidates
U+200B : Zero width space.
U+FEFF : Zero width no-break space.
But how do I translate these codes into entity values? I guess that ​ is the former (thanks encyclo) but what about the latter?
Kaled.
Of all the ideas so far, I like Lance's Javascript solution the best. It's either that or cloaking, which would be massive overkill for this situation.
It doesn't look like any thin/invisible space has good cross-browser support - very annoying.
I'll have to give the javascript suggestion some thought but, perhaps, as SEO, this just isn't a good idea.
Thanks for all the suggestions,
Kaled.