vote up 5 vote down star
3

I have a web application that's branded according to the user that's currently logged in. I'd like to change the favicon of the page to be the logo of the private label, but I'm unable to find any code or any examples of how to do this. Has anybody successfully done this before?

I'm picturing having a dozen icons in a folder, and the reference to which favicon.ico file to use is just generated dynamically along with the HTML page. Thoughts?

flag

6 Answers

vote up 8 vote down check

Why not?

function() {
    var link = document.createElement('link');
    link.type = 'image/x-icon';
    link.rel = 'shortcut icon';
    link.href = 'http://www.stackoverflow.com/favicon.ico';
    document.getElementsByTagName('head')[0].appendChild(link);
}();

Firefox should be cool with it.

link|flag
I'm thinking this is close to what I'm looking for, but how would I get the appropriate HREF from the database. I suppose I'll have to do a server lookup from javascript, but I don't want it to get too complicated. Thanks for the tip. – rwmnau Nov 4 '08 at 4:57
Sure, you can always look them up from a database or a filesystem. If there are only a few, you could simply hard code an array of strings. – keparo Nov 4 '08 at 5:26
vote up 5 vote down

An arcade game in a favicon:

http://www.p01.org/releases/DHTML_contests/files/DEFENDER_of_the_favicon/

link|flag
However, be careful because that method isn't working on IE – paulgreg May 12 at 8:20
vote up 3 vote down

The favicon is declared in the head tag with something like:
<link rel="shortcut icon" type="image/ico" href="favicon.ico">

You should be able to just pass the name of the icon you want along in the view data and throw it into the head tag.

link|flag
IIRC, however, some browsers (I'm looking in your direction, IE) don't really respect this sometimes. – Matthew Schinckel Nov 4 '08 at 4:22
(I found I had better results just having the icon file in the right location, rather than the explicit link). – Matthew Schinckel Nov 4 '08 at 4:23
vote up 2 vote down

If you have the following HTML snippet:

<link id="favicon" rel="shortcut icon" type="image/png" href="favicon.png" />

You can change the favicon using Javascript by changing the HREF element on this link, for instance (assuming you're using JQuery):

$("favicon").attr("href","favicon2.png");

You can also create a Canvas element and set the HREF as a ToDataURL() of the canvas, much like the Favicon Defender does.

link|flag
vote up 0 vote down

According to WikiPedia, you can specify which favicon file to load using the link tag in the head section, with a parameter of rel="icon".

For example:

 <link rel="icon" type="image/png" href="/path/image.png">

I imagine if you wanted to write some dynamic content for that call, you would have access to cookies so you could retrieve your session information that way and present appropriate content.

You may fall foul of file formats (IE reportedly only supports it's .ICO format, whilst most everyone else supports PNG and GIF images) and possibly caching issues, both on the browser and through proxies. This would be because of the original itention of favicon, specifically, for marking a bookmark with a site's mini-logo.

link|flag
vote up 0 vote down

if you're using PHP, just have the href equal to a PHP variable that you've set up per user.

If you're not putting the favicon like http://www.example.com/favicon.ico (where it is in the root directory), it might be a good idea to play with .htaccess (if you're using Apache) to redirect any of those requests to the right file.

Look at your logs, if there anything like mine (before I added a redirector) there were many 404's looking for /favicon.ico

link|flag

Your Answer

Get an OpenID
or

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