About creating new page: I cannot find the “publish” and “save” buttons. Instead i can see this->
//<!-- edCanvas = document.getElementById('content'); // If tinyMCE is defined. if ( typeof tinyMCE != 'undefined' ) { // This code is meant to allow tabbing from Title to Post (TinyMCE). if ( tinyMCE.isMSIE ) { document.getElementById('title').onkeydown = function (e) { e = e ? e : window.event; if (e.keyCode == 9 && !e.shiftKey && !e.controlKey && !e.altKey) { var i = tinyMCE.getInstanceById('content'); if(typeof i == 'undefined') return true; tinyMCE.execCommand("mceStartTyping"); this.blur(); i.contentWindow.focus(); e.returnValue = false; return false; } } } else { document.getElementById('title').onkeypress = function (e) { e = e ? e : window.event; if (e.keyCode == 9 && !e.shiftKey && !e.controlKey && !e.altKey) { var i = tinyMCE.getInstanceById('
what does this mean?