Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
<script type="text/javascript">
<!--
function Auswerten()
{
var punkte = 0;
punkte += parseInt(document.getElementById('Wohnort').value);
if(punkte >= 3)
{
document.getElementById('Ausgabe').innerHTML = "Du hast " + punkte + " Punket erreicht. Noob!";
}
else
{
document.getElementById('Ausgabe').innerHTML = "Du hast " + punkte + " Punket erreicht. Gut!";
}
}
//-->
</script>
Fragst du die Habbos nach ihrem Wohnort?
<input type="radio" name="Wohnort" id="Wohnort" value="3">Ja
<input type="radio" name="Wohnort" id="Wohnort" value="0">Nein
<input type="button" value="Absenden" onClick="Auswerten();">
<div id="ausgabe"></div>