Skip to content

Instantly share code, notes, and snippets.

@belo-
Created October 12, 2008 06:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save belo-/16366 to your computer and use it in GitHub Desktop.
Save belo-/16366 to your computer and use it in GitHub Desktop.
<html>
<head>
<title>Формачке</title>
<script type="text/javascript" src="jquery.min.js"></script>
<script>
function calc(){
if ($('frm input[q1]').is(':checked')) {
$("#qa_1").append("Правильно!");
}
}
</script>
</head>
<body>
<div>
<form name="frm">
<div id="qa_1">2*2 = <input type="checkbox" name="q1"/> 4 <input type="checkbox" name="q1_1"/> 5 <input type="checkbox" name="q1_2"/> 6</div>
<input type="button" name="ok" value="Ну, ввел, чо дальше?" style="margin-bottom: 1em" onclick="calc();"/>
</form>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment