i have been asked to fix a problem on a content management system website. when the user edits the text and then clicks on the save button it is not updating the text on the pages selected. the code that is being used is
oEdit1.btnSave= true; // Enable save button
oEdit1.onSave = new Function("save()"); // Specify a function to call
and the function looks like this
<script>
function save()
{
document.forms.form1.elements.inpContent.value = oEdit1.getHTMLBody();
document.forms.form1.submit()
}
</script>
if anyone can help please get back