Hi, habe ein Problem mit der execcommand. In Safari, Opera und Firefox wird dieser Befehl sofort ausgeführt. Bei jedem Klick. Beim Internet Explorer 11 muss ich den Befehl oft zwei oder drei mal ausführen damit dieser im iframe übernommen wird. Weiß jemand warum?
JavaScript:
function doRichEditCommand(aName, aArg)
{
getIFrameDocument('frame').execCommand(aName,false, aArg);
document.getElementById('frame').contentWindow.focus();
}
HTML:
<td style = "background-color: #ffffff; width: 25px; height=25px;" class = "color_rahmen" onMouseDown = "doRichEditCommand('ForeColor','#ffffff');"> </td>
Danke für die Hilfe
JavaScript:
function doRichEditCommand(aName, aArg)
{
getIFrameDocument('frame').execCommand(aName,false, aArg);
document.getElementById('frame').contentWindow.focus();
}
HTML:
<td style = "background-color: #ffffff; width: 25px; height=25px;" class = "color_rahmen" onMouseDown = "doRichEditCommand('ForeColor','#ffffff');"> </td>
Danke für die Hilfe