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.
formnameis a string. A string does not have such a method calledgetValue. Seeing the appearance of$.cookie("formname"), I assume that you’re using JQUery.Code: