Thanks - would this work for just greying it out (ie the user can still see the option but cannot select it) or would it mean they can't see the option altogether?
<p>Yes this would mean users can still see the option but it would be greyed out and can't be selected.</p>
Thanks
<script>
jQuery(document).ready(function($){
$('input[name="item_meta[804]"]').change(function(){
var val1 = $(this).val();
$("#field_ht4d3 option:contains('" + val1 + "')").attr("disabled","disabled");
$("#field_ht4d3 option:not(:contains('" + val1 + "'))").removeAttr("disabled","disabled");
});
});
</script>
Please login or Register to submit your answer