PHP beginner |
|
dit zijn de functies
plaats die gewoon op de knoppen die je zelf gemaakt heb
//links uitlijnen
document.getElementById("iframe").contentWindow.document.execCommand("justifyLeft",false, null);
//centraal uitlijnen
document.getElementById("iframe").contentWindow.document.execCommand("justifyCenter", false, null);
//rechts uitlijnen
document.getElementById("iframe").contentWindow.document.execCommand("justifyRight", false, null);
//links uitlijnen document.getElementById("iframe").contentWindow.document.execCommand("justifyLeft",false, null); //centraal uitlijnen document.getElementById("iframe").contentWindow.document.execCommand("justifyCenter", false, null); //rechts uitlijnen document.getElementById("iframe").contentWindow.document.execCommand("justifyRight", false, null);
Ik hoop dat je daar wat aan hebt. |