またはを実行したときにいずれtrue
かの値を返す要素があります。false
$('#myId').val()
div
true または false が返されたら、特定の背景色を true の場合は緑に、false の場合は赤に変更したいと考えています。
if ($('#myId').val())
{
code should return a div with text and green background
}
else
{
code should return a div with text and red background
}