Fire up the Fox - Marketing to Firefox users
We spend a lot of time here at SFx trying to get people to use Firefox. We add banners and buttons to our site for people to download Firefox. But what's the use of showing those buttons to people who already have Firefox?
It makes sense instead to either offer them something else to download, or offer them a page where they can learn more about Firefox.
Such a page should provide an easy overview of the possibilities, extensions, themes, where to get help, how to get involved, etc... A visitor (presumably an existing Firefox user) may discover new possibilities and this can help entrench Firefox usage.
The last few days I have (with contributions from Ken) put together a page just like that and I am offering Firefox users who visit my most popular page a button that links to this page: Fire up the Fox
I use a bit of JavaScript to select between browsers and choose the ad to show:
var ua = navigator.userAgent.toLowerCase();
if (0<=ua.indexOf('msie')) {
// Code for downloading Firefox button
} else if (0<=ua.indexOf('firefox')) {
// Code for Fire up the Fox button
} else {
// Code for Thunderbird or OpenOffice buttons.
}
This code divides users in 3 groups:
- Internet Explorer users are offered a GetFirefox button.
- Firefox users are offered a Fire up the Fox button.
- Other browsers are offered a Thunderbird or OpenOffice button (since they have already made a browser choice).
I have built this mechanism and the Fire up the Fox page as an example of what is possible, it could grow into an SFx community project if there is more interest for it.
We need to solidify and entrench Firefox usage amongst people who already use it, especially as the browser war is going to get a lot more fierce in the coming years (Microsoft has millions of dollars lined up to market IE7). Extensions, themes and other possibilities that are not available for Internet Explorer will help keep people using Firefox. So let's tell them about it!
Otto - http://www.7is7.com/otto/








