Is there any way to get a reference of the input field and append it's value or label to the error message?
By default, the error messages are like "This value is required".
I want to change "This value" with the input label so that I get a better error message.
$( '#form' ).parsley({
messages: {
required: 'LABEL VALUE HERE + Error message'
}
});
Here is a a boilerplate to get you started: http://jsfiddle.net/82utb/