Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

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!");
//...
 
PREVIOUS NEXT
Tagged: #javascript #add #text #textarea #overwrite
ADD COMMENT
Topic
Name
6+5 =