You could try a data URI. No HTTP request!
<link id="favicon" rel="shortcut icon" type="image/png" href="data:image/png;base64,....==">
Of course, this is silly, because unless your site has static caching, your favicon wouldn't be able to be cached, and depending on the complexity of your favicon image, your source code could get kind of bloated.
Here's a sample. Seems to work in most modern browsers; I have it working in recent versions of Chrome, Firefox and Safari on a Mac. Doesn't seem to work in Internet Explorer, and possibly some versions of Opera.
If I were to implement a favicon data URI, I'd do it as such:
include an IE conditional comment that would load the actual favicon.ico in the traditional way, since it seems that Internet Explorer doesn't support Data URI Favicons
<!--[if IE ]><link rel="shortcut icon" href="http://example.com/favicon.ico" type="image/x-icon" /><![endif]-->
Include the favicon.ico file in your root directory to cover browsers that will request it either way, since for those browsers, if they're already checking no matter what you do, you might as well not waste the HTTP request with a 404 response.
Use feature detection to detect Data URI support, and inject the favicon dynamically for non-IE browsers that don't support Data URIs:
<!--[if !(IE)]><!--><script>(function(){
var d = new Image();
d.onload = data.onerror = function(){
if(this.width != 1 || this.height != 1)
//inject favicon here
};
d.src = "data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///ywAAAAAAQABAAACAUwAOw==";
})();</script> <!--<![endif]-->
Another possibility is you could remove the regular favicon code and then just inject the favicon at DOM Ready (example using jQuery):
jQuery(function($){
$('<link rel="shortcut icon" href="http://example.com/favicon.ico" type="image/x-icon" />').appendTo('head');
});
That way, your whole page will load before making the favicon request in browsers that do not make the request automatically on their own.
If you don't care about actually having a favicon, you could (as a commenter points out) just include your blank.gif pixel as your favicon, and use the opportunity to pre-load it, so that subsequent usage would be served from the cache. You could also just use the favicon of another popular site which is likely to have their favicon cached, like http://google.com/favicon.ico, so that it is served from cache.
As commenters have pointed out, just because you can do this doesn't mean you should, since some browsers will request favicon.ico regardless of the tricks we devise. The amount of overhead you'd save by doing this would be minuscule compared to the savings you'd get from doing things like gzipping, using far-future expires headers for static content, minifying JavaScript files, putting background images into sprites or data URIs, serving static files off of a CDN, etc.
data:values for images, and scripts inline. – zzzzBov Mar 4 '11 at 22:34