6 lines
154 B
JavaScript
6 lines
154 B
JavaScript
window.onload = () => {
|
|
const textArea = document.getElementById('besana-editor')
|
|
const textAreaValue = textArea.value
|
|
console.log(textAreaValue)
|
|
}
|