Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to get Value from CodeMirror textarea whose name I have in Cookie. How can I do this?

I tried:

  var formname = $.cookie("formname");
  var formcode = formname.getValue(); 

Firebug says: formname.getValue is not a function

Thank you very much. I hope you understand me.

share|improve this question

1 Answer

up vote 1 down vote accepted

formname is a string. A string does not have such a method called getValue. Seeing the appearance of $.cookie("formname"), I assume that you're using JQUery.

Code:

var formname = $.cookie("formname");
var formcode = $('textarea[name="'+formname+'"]').val(); //JQuery method:
// Selects an input element whose name equals `formname` and gets the value of it.

//var formcode = document.getElementById(formname).value;
// Another method: Without use of JQuery, assuming that the textarea's id equals formname
share|improve this answer
FireBug: unterminated string literal ... ? – J.Lamer Sep 18 '11 at 18:04
My bad, fixed now. Do you know how to recognise and debug JavaScript errors? unterminated string literal means that a string has been started using a quotation mark, but no ending mark can be found. – Rob W Sep 18 '11 at 18:05
I know. I wanted to edit your post but i don´t have privileages to do it. But no, your solution don´t help me. getValue is from CodeMirror API(codemirror.net/manual.html#api). – J.Lamer Sep 18 '11 at 18:11
Updated answer. It will get the content of a textarea with the name attribute set to formname. I have commented another option, which selects the textarea whose id equals formname. – Rob W Sep 18 '11 at 19:36
Yes i tried it... But i must save(codemirror.net/manual.html#save) CodeMirror textarea before i can get value from it. Becouse there are no charecters in textarea before i save() the CodeMirror. I ask how to save CodeMirrors in this question: stackoverflow.com/questions/7463644/… – J.Lamer Sep 18 '11 at 19:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.