pv_project/site/js/wysiwyg.js

11 lines
300 B
JavaScript
Raw Normal View History

2025-07-17 08:15:19 +00:00
function commande(nom, argument){
if (typeof argument === 'undefined') {
argument = '';
}
// Exécuter la commande
document.execCommand(nom, false, argument);
}
function getContent(){
document.getElementById("detailsJpo").value = document.getElementById("editeur").innerHTML;
}