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