försöker copy&pasta lite koder och försöker lära mig lite mer inom Javascript men jag får bara problem med textarea & iframe editor...:
if (isHTMLMode){
textEdit.document.body.innerText = textEdit.document.body.innerHTML;
textEdit.document.body.style.fontFamily = "Courier New, Courier, mono"
textEdit.document.body.style.fontSize = "10pt"
textEdit.document.body.style.color = "#4E6469"
if (event.keyCode==13){return textEdit.document.event.keyCode=13;}
for (i=0; i<IDList.length; i++) { // for each button
var button_obj = document.all["button_" +IDList[i]]; // get button object
if (button_obj == null) { continue; } // if no btn obj???
button_obj.className = 'btnNA';
button_obj.disabled = true;
}
}
else {
textEdit.document.body.innerHTML = textEdit.document.body.innerText
textEdit.document.body.style.fontFamily = ""
textEdit.document.body.style.fontSize =""
textEdit.document.body.style.color = ""
if (event.keyCode==13){
var oSel = textEdit.document.selection.createRange();
oSel.pasteHTML('<br>');
}
}
textEdit.focus();
}
på raden:
if (event.keyCode==13){return textEdit.document.event.keyCode=13;}
hade jag velat få så att om man trycker på enter så ska den bara hoppa ner en rad.. men den gör det ändå inte.. utan den hoppar ner 2 rader.. eller blir <p> i editorn...