Jquery:
<script type="text/javascript"> function enableDisableButton() { var isChecked = ($('input[name=ignore-checkbox]').is(':checked')); if (isChecked == true) { $("button[name=set-up-account]").removeAttr("disabled"); } else { $("button[name=set-up-account]").attr("disabled", "disabled"); } } $('#mobilePage').live('pageinit', function (event) { //document ready for jquery mobile enableDisableButton(); $('#ignore-checkbox').bind("change", function () { enableDisableButton(); }); }); </script> Html:
@using (Html.BeginForm("Account", "SetUpAccount", FormMethod.Post, new { @id = "account-set-up", @data_ajax = "false" })) { <div> <div> <label for="ignore-checkbox">Ignore</label> <input type="checkbox" name="ignore-checkbox"/> </div> </div> <div> <button type="submit" name="set-up-account">Set Up Account</button> </div> } I want to enable/disable the Set Up Account button based on check box checked property. If checkbox is checked, then enable the button, else disable. On page load i am disabling the button
The problem i am facing is,
On page load, its disabling the button, but its not adding/removing the disabled attribute based on change event of check box, i checked in firebug, its entering the loop properly based on checked and unchecked value.
Note: I am using Jquery mobile 1.2 and jquery 1.7. Also before posting here i searched in google, there are many postings under enabling and disabling of button based on checkbox checked value. but none solves my issue.
What's the problem? please help me
Thanks...
74 Answers
I'm not sure if this will help solve your main problem, but according to you should be adding and removing the disabled property using the .prop() function, not the .attr() and .removeAttr() functions.
To add the property:
.prop("disabled", true); To remove the property:
.prop("disabled", false); I stumbled across this question while looking for the above info, so I thought I'd share.
0Its not enabling the button because of Jquery Mobile. In JQM, we need to refresh the form element, while manipulating it
The solution is
function enableDisableButton() { var isChecked = ($('input[name=ignore-checkbox]').is(':checked')); if (isChecked) { $("button[name='set-up-account']").removeAttr("disabled").button('refresh'); } else { $("button[name='set-up-account']").attr("disabled", "disabled").button('refresh'); } } $('#mobilePage').live('pageinit', function (event) { enableDisableButton(); $('#ignore-checkbox').bind("change", function () { enableDisableButton(); }); }); The problem was solved by adding
.button('refresh'); Like this one
$('#setagb').change(function(){ if ($(this).is(':checked')) { $("#submit").removeAttr("disabled"); } else { $("#submit").attr( "disabled", "disabled" ); } }); Try this
$("input[name=ignore-checkbox]").click(function() { $("button[name=set-up-account]").attr("disabled", this.checked); }); 3