$('#daybillable).bind( "change", function(event, ui) {
dailyEntryFormChanged = true;
alert("Daily Entry Form Changed : " + dailyEntryFormChanged);
});
Checkboxes are defined as follows:
<div data-role="fieldcontain">
<fieldset data-role="controlgroup" data-type="horizontal">
<p><b>Working Days</b></p>
<input type="checkbox" name="checkbox-mon" id="checkbox-mon" class="custom" />
<label for="checkbox-mon">Mon</label>
<input type="checkbox" name="checkbox-tues" id="checkbox-tues" class="custom" />
<label for="checkbox-tues">Tue</label>
<input type="checkbox" name="checkbox-wed" id="checkbox-wed" class="custom" />
<label for="checkbox-wed">Wed</label>
<input type="checkbox" name="checkbox-thurs" id="checkbox-thurs" class="custom" />
<label for="checkbox-thurs">Thu</label>
<input type="checkbox" name="checkbox-fri" id="checkbox-fri" class="custom" />
<label for="checkbox-fri">Fri</label>
<input type="checkbox" name="checkbox-sat" id="checkbox-sat" class="custom" />
<label for="checkbox-sat">Sat</label>
<input type="checkbox" name="checkbox-sun" id="checkbox-sun" class="custom" />
<label for="checkbox-sun">Sun</label>
</fieldset>
</div>
Any help would be appreciated!! Thanks.