I am getting the following response from the JSON which is in the string format and inside there is an array.
"["Password first character can not be blank", "Current password can't be blank"]"
I tried to extract the my required array object by using the following method.
errorMessages = "["Password first character can not be blank", "Current password can't be blank"]"
jQuery.parseJSON( errorMessages )
But it is not working for me, can anybody please help me?
Thank you in advance.