PHP interesse |
|
Ik zit momenteel met een probleem, ik wil mijn WYSIWYG editor omzetten in html, bij IE werkt het, maar bij firefox zet hij het niet om naar html.
Weet iemand misschien wat ik eraan kan doen dit is het script voor het omzetten van WYSIWYG naar html:
function doToggleView()
{
if(viewMode == 1)
{
iHTML = document.getElementById("iframe").contentWindow.document.body.innerHTML;
document.getElementById("iframe").contentWindow.document.body.innerText = iHTML;
document.getElementById("iframe").contentWindow.focus();
viewMode = 2; // Code
}
else
{
iText = document.getElementById("iframe").contentWindow.document.body.innerText;
document.getElementById("iframe").contentWindow.document.body.innerHTML = iText;
document.getElementById("iframe").contentWindow.focus();
viewMode = 1; // WYSIWYG
}
}
function doToggleView() { if(viewMode == 1) { iHTML = document.getElementById("iframe").contentWindow.document.body.innerHTML; document.getElementById("iframe").contentWindow.document.body.innerText = iHTML; document.getElementById("iframe").contentWindow.focus(); viewMode = 2; // Code } else { iText = document.getElementById("iframe").contentWindow.document.body.innerText; document.getElementById("iframe").contentWindow.document.body.innerHTML = iText; document.getElementById("iframe").contentWindow.focus(); viewMode = 1; // WYSIWYG } }
Ik hoop dat iemand mij kan helpen, alvast bedankt!
|