Here is a collection of useful sites/tools/plugins (i.e. permalinks) that I recommend all developers/designers use.
small payday loans very cheap
Coding
Design
Tools
- http://css3generator.com/
- http://jsfiddle.net/
- http://cssgrid.net/
- http://lessframework.com/
- http://prefixr.com/
- http://www.springbox.com/mobilizer/
Browser Plugins
Bold permalinks are ones I use often. Got suggestions? Leave a comment.
jQuery used to make random colors:
var colors = ["#009900", "#990000", "#000099", "#999900", "#009999", "#990099"];
randno = Math.floor ( Math.random() * colors.length );
$(".entry a").hover(function(){
randno = Math.floor ( Math.random() * colors.length );
$(this).css("color", colors[randno]);
}, function () {
$(this).css("color", "#000000");
});