How do I configure Parsley using javascript, not html data attributes?
The documentation examples show how to configure the Parsley form instance and some global fie
@kim-prince Hope this helps
<form id="myForm">
<input id="number" placeholder="Number" />
<input type="submit" />
</form>
<script>
$('#myForm').parsley();
$("#number").parsley().addConstraint('type','number');
$("#number").parsley().addConstraint('minlength',2);
$("#number").parsley().addConstraint('required');
</script>
see working codepen: http://codepen.io/ds0001/pen/QwoRVx?editors=101