I have two pages with HTML forms. The first page has a submission form, and the second page has an acknowledgement form. The first form offers a choice of many controls, whi
Another simple way that's supported by all browsers would be:
HTML:
CSS:
.disabled { pointer-events: none; opacity: .4; }
But be aware, that the tabbing still works with this approach and the elements with focus can still be manipulated by the user.