On this page, what element is receiving the text as you type?
I need to get the text value of the element, but I can’t seem to find it.
http://featuredfotografer.com/
If someone could show me how to get this specific text value with jQuery it would be really helpful.
$(".CodeMirror-lines div:last").text();It’s not a single element. It’s creating tags and indents on the fly… but the above will return the text value of everything inside the last
divof.CodeMirror-lines, which I believe is what you’re after.