We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
form input array posting double...
<input type="hidden" name="veg[]" value="x" >
The text was updated successfully, but these errors were encountered:
<script type="text/javascript"> var ww=document.body.clientWidth; $(document).ready(function(){ adjust(); }); $(window).bind('resize orientationchange',function(){ww=document.body.clientWidth;adjust();}); var adjust=function(){ if(ww<800) { $(".small-only :input").removeAttr('disabled'); $(".large-only :input").attr("disabled", true); $(".small-only :input").attr("disabled", false); } else if(ww>=800) { $(".large-only :input").attr("disabled", false); $(".large-only :input").removeAttr('disabled'); $(".small-only :input").attr("disabled", true); } } </script>
Sorry, something went wrong.
I have same problem
No branches or pull requests
form input array posting double...
<input type="hidden" name="veg[]" value="x" >
The text was updated successfully, but these errors were encountered: