Hey guys, I have a couple bits of code that seem like they could be condensed but I'm not sure how.
The code I have is this
var checkForUnitReferred = function () {
$("#LeadForm").toggle($("#Claim_UnitReferredNoNull").is(":checked"));
};
checkForUnitReferred();
$("#Claim_UnitReferredNoNull").change(function() {
checkForUnitReferred();
});
It basically checks if a checkbox is checked and displays a form, otherwise it hides it. What I would rather have is something like this
var checkForUnitReferred = (function() {
$("#LeadForm").toggle($("#Claim_UnitReferredNoNull").is(":checked"));
})();
$("#Claim_UnitReferredNoNull").change(function() {
checkForUnitReferred();
});
I know this doesn't work but I think something like that would be cleaner. Anyone know of a way to accomplish this?
checkForUnitReferredinitially and then on each change event? I wouldn't say your second piece of code is necessarily any cleaner... – El Ronnoco Jan 7 '11 at 14:21