Design & development blog
Free iconsets
Creating icons for your artwork - webdesign or other - can be a real hussle. Here is a great article with 50 free iconsets. Not all of them will be of use to you, but some might. Have fun.
If you are creating a site for a restaurant the following icons might come in handy. Might.
Some nice colorpalets

You can find or create more great palets on kuler.adobe.com
Safe email link using jquery
Using Jquery you can safely use email adresses in your html pages. Here is how it works.
1. include jquery
2. include following code:
| jQuery.fn.mailto = function() { |
| return this.each(function(){ |
| var email = $(this).attr("href").replace(/\s*\(.+\)\s*/, "@"); |
| $(this).before('<a href="mailto:' + email + '" rel="nofollow" title="Email ' + email + '">' + $(this).html() + '</a>').remove(); |
| }); |
| }; |
3. include next line:
| $(document).ready(function() { |
| $('.email').mailto(); |
| }); |
4. create a email link
<a class="email" href="axel(at)molokini.be">send a mail to Axel</a>
5. tadaa
The original code is by Kevin Leary, I enhanced it so you can use a word or sentence as a link instead of the link itself.