11 lines
214 B
JavaScript
11 lines
214 B
JavaScript
function afficher(txt)
|
|
{
|
|
// editor.InsertHTML(txt);
|
|
document.getElementById('keyboard_area').value = txt ;
|
|
}
|
|
|
|
function rechercher()
|
|
{
|
|
// editor.getHTML();
|
|
return document.getElementById('keyboard_area').value ;
|
|
} |