>Failed to load resource: the server responded with a status of 404 (Not Found)
prøv at ligge din demo online.
eller load jquery localt istedet fra nettet.
jeg afvikler siden fra localhost, og ikke bare ved at klikke på html filen, da denne ellers vil bliver indlæst som file:
>Hvad nu hvis jeg gerne vil have den til at disable øvrige checkboxe i gruppen når det ønskede antal er valgt? Kan det lade sig gøre?
kig på denne (kan optimeres)
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>demo</title>
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script>
$(function() {
var submitButt = $("input[type='submit']");
$( "#frm" ).change(function() {
var status_option_antal0 = false;
var status_option_antal1 = false;
var option_antal0 = $("input:checkbox[name='option0[]']:checked").length;
var option_antal1 = $('input[name="option1[]"]:checked').length;
if(option_antal0 > 2){
status_option_antal0 = true;
$('input[name="option0[]"').each(function (index, value){
if(value.checked==false){
value.disabled=true;
}
});
}
else{
// enabler alle checkboxe
$('input[name="option0[]"').each(function (index, value){
value.disabled=false;
});
}
if(option_antal1 > 1){
status_option_antal1 = true;
$('input[name="option1[]"').each(function (index, value){
if(value.checked==false){
value.disabled=true;
}
});
}
else{
// enabler alle checkboxe
$('input[name="option1[]"').each(function (index, value){
value.disabled=false;
});
}
var status = (status_option_antal0 && status_option_antal1 )? false : true;
submitButt.attr("disabled", status);
});
});
</script>
</head>
<body>
<form id="frm" >
<input type="checkbox" name="option0[]" > <label for="option-1">Option 1</label><br>
<input type="checkbox" name="option0[]" > <label for="option-2">Option 2</label><br>
<input type="checkbox" name="option0[]" > <label for="option-3">Option 3</label><br>
<input type="checkbox" name="option0[]" > <label for="option-4">Option 4</label><br>
<input type="checkbox" name="option0[]" > <label for="option-5">Option 5</label><br>
<br>
<input type="checkbox" name="option1[]" > <label for="option-11">Option 11</label><br>
<input type="checkbox" name="option1[]" > <label for="option-12">Option 12</label><br>
<input type="checkbox" name="option1[]" > <label for="option-13">Option 13</label><br>
<input type="checkbox" name="option1[]" > <label for="option-14">Option 14</label><br>
<input type="checkbox" name="option1[]" > <label for="option-15">Option 15</label><br>
<input type="checkbox" name="option1[]" > <label for="option-16">Option 16</label><br>
<input type="submit" value="Do thing" disabled>
</form>
</body>
</html>
demo
http://experten.olsensweb.dk/1009344/test1.html