Within the body tag, I have placed an iFrame:
<body onLoad="iFrameOn();">
<iframe name="richTextField" id="richTextField" style="border:#000 1px solid; width:700px; height:300px;"></iframe>
</body>
The iFrameOn JavaScript function is structured like this:
function iFrameOn() {
richTextField.document.designMode = 'On';
richTextField.document.body.style.fontFamily = "Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
}
However, the font within the iFrame does not change as intended. The error console displays a message: "Helvetica is not defined(...)". How can I address this issue so that the specified font is applied to the iFrame?
Thank you for your assistance!