Hello, I was wondering if it was possible to fix this script so the rainbow effect shows in the chatbox?
Either the animated or just rainbow letters each letter being a different color
@Ange your super good with scripts *)
Thank you for any help!
- Code:
$.getScript("http://xoxco.com/projects/code/rainbow/rainbow.js",function() {
var selectMe= ["u2311"];
for(var i =0;i<selectMe.length;i++){
$('a[href="/'+selectMe[i]+'"]').addClass('rainbow');
}
$('.rainbow').find('*').andSelf().contents().filter(function(){
return this.nodeType===3;
}).parent().text(function() {
$(this).rainbow({
colors: [
'#FF0000',
'#f26522',
'#fff200',
'#00a651',
'#28abe2',
'#2e3192',
'#6868ff'
],
animate:true,
animateInterval:100,
pad:false,
pauseLength:100
});
});
});
Either the animated or just rainbow letters each letter being a different color
@Ange your super good with scripts *)
Thank you for any help!