View Single Post
Old 10-14-2009, 10:24 PM   PM User | #2
Fumigator
UE Antagonizer


 
Fumigator's Avatar
 
Join Date: Dec 2005
Location: Utah, USA, Northwestern hemisphere, Earth, Solar System, Milky Way Galaxy, Alpha Quadrant
Posts: 7,686
Thanks: 42
Thanked 637 Times in 625 Posts
Fumigator is a glorious beacon of lightFumigator is a glorious beacon of lightFumigator is a glorious beacon of lightFumigator is a glorious beacon of lightFumigator is a glorious beacon of light
Use the jquery selector to select all anchor tags, then change the CSS for each element, randomly assigning color.

Something like..

PHP Code:
$(function() {
    $(
"a").each(function (i) {
         $(
this).css("color",getRandomColor());
    });
});

function 
getRandomColor() {
//return a random color value

__________________

Last edited by Fumigator; 10-14-2009 at 10:27 PM.. Reason: corrected example
Fumigator is offline   Reply With Quote