Answers for "javascript add text to textarea overwrite"

0

javascript add text to textarea overwrite

var $log = $('#myTextArea');

function log(text) { //Remember to clear your text variable each iteration
    $log.empty();
    $log.append(text);
}

// Whichever function during which you want to print to the text area:
//...
log("Hello world!");
//...
Posted by: Guest on June-11-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language