View Single Post
Old 09-24-2009, 07:11 AM   PM User | #4
Phil Jackson
Senior Coder

 
Join Date: Aug 2009
Location: Mansfield, Nottinghamshire, UK
Posts: 1,547
Thanks: 57
Thanked 148 Times in 147 Posts
Phil Jackson is on a distinguished road
Code:
$("#formSignup ul li p input.userInput").each({
			if ( $(this).val() == "" ){
				$(this).parents("ul:eq(0)").children("li[class=description]").css("color", "red");
			} else {
				$(this).parents("ul:eq(0)").children("li[class=description]").css("color", "black");
			}
		});
This also is making my head scratch
__________________
Website Design Mansfield
PHP Code:
function I_LOVE(){function b(&$b='P'){$b.='P';}function a($_){return $_++;}$b='P';define("B",'H');b($b=implode('',array($b=a($b),$b=a(B))));b($b);return $b;}
echo 
I_LOVE(); 
Phil Jackson is offline   Reply With Quote