How I can save() all CodeMirror textareas on one page?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You’d have to cache all CodeMirror instances in to an array, and then loop through that array
save()‘ing each instance.I’d assume at some point in your script you’re setting up your CodeMirror instances, so that point would be ideal to cache them.