I have a problem with loading this code. I am sure its something to do with noConflict but i cant seem to get it right.
$(document).ready(
function spouseName() {
if ($('#maritalstatus').val() == 'married') {
$('#spousename').attr("disabled", false);
} else {
$('#spousename').val('');
$('#spousename').attr("disabled", true);
}
}
);
by the way, it works on IE but not FF