Is there a way to simulate input being disabled without actually changing the value in the input field, but still have that value sent with POST using a form?
<input class="dis" type="text" disabled="disabled" value="111">
<input class="no" type="text">
<input class="dis" type="text" disabled="disabled" value="333">
Are there ways to achieve this using CSS and jQuery?