I am trying to build a function to change the text on checkbox selection, please check following...
Jquery code
$(document).ready(function() {
if($('#active').is(':checked')) {
$('strong', '#status').text('Active');
}
else {
$('strong', '#status').text('Inactive');
}
});
Html Form
<span id="status"><input name="active" type="checkbox" value="1" id="active" />
<strong>Active</strong></span>
It works perfect when page loads, but if we change value of #active or we click #active it doesn't change text like active or inactive. thanks for help.