Skip to content

Instantly share code, notes, and snippets.

@ebsbk
Created January 13, 2012 13:41
Show Gist options
  • Save ebsbk/1606284 to your computer and use it in GitHub Desktop.
Save ebsbk/1606284 to your computer and use it in GitHub Desktop.
function Check()
{
if (
(form1.house1.value == "yellow")&&
(form1.house2.value == "blue")&&
(form1.house3.value == "red")&&
(form1.house4.value == "green")&&
(form1.house5.value == "white")&&
(form1.drink1.value == "water")&&
(form1.drink2.value == "tea")&&
(form1.drink3.value == "milk")&&
(form1.drink4.value == "cafe")&&
(form1.drink5.value == "beer")&&
(form1.anim1.value == "cat")&&
(form1.anim2.value == "horse")&&
(form1.anim3.value == "bird")&&
(form1.anim4.value == "fish")&&
(form1.anim5.value == "dog")&&
(form1.cigar1.value == "dunhill")&&
(form1.cigar2.value == "rothmans")&&
(form1.cigar3.value == "pallmall")&&
(form1.cigar4.value == "marlboro")&&
(form1.cigar5.value == "philipmorris")&&
(form1.nac1.value == "Norway")&&
(form1.nac2.value == "denmark")&&
(form1.nac3.value == "english")&&
(form1.nac4.value == "german")&&
(form1.nac5.value == "Schwed")
)
{alert('œÓÁ‰‡‚ΡÂÏ! ¬˚ ‡Á„‡‰‡ÎË «‡„‡‰ÍÛ ›È̯ÚÂÈ̇!');}
else
{alert('ÕÂÚ, ˝ÚÓ ÌÂÔ‡‚ËθÌ˚È ÓÚ‚ÂÚ.');}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment