I am a developer based in Bristol, UK, and run a web company called Siteclick.
My main areas of coding knowledge are the usual suspects: XHTML, CSS, PHP, Javascipt, JQuery. I also dabble in a bit of XML/XSLT.
I also produce music with my wife Emi in a band called Exitproject.
I’m a keen (but amateur) photographer too – check out my Flickr page.
And I also create and share vegetarian recipes.
I hope you enjoy this blog!
Regarding your font selector version 2. It is helpful. Thanks. You may want to know that your anchor click function is being called way too often. I made the following change. You may want to consider something similar.
1. Added an id of “a” + i to the tags that are built on the fly.
2. Changed the selector of the click function to be as follows:
$(ul).find(‘#a’ + i).click(function() { … } );
However, a more generic approach is needed if one is ever to embed more than one font input control on the page.