Exclude invisible Inputs with parsley.js 2.x
Either do:
jQuery("#formid").parsley({ excluded: "input[type=button], input[type=submit], input[type=reset], input[type=hidden], [disabled], :hidden" });
Or
window.ParsleyConfig = { excluded: "input[type=button], input[type=submit], input[type=reset], input[type=hidden], [disabled], :hidden" };
<script src="parsley.js"></script>
(see http://parsleyjs.org/doc/index.html#psly-usage-global-configuration)