Default value: true
Specify whether to show the footer at the bottom of the editor, where users can toggle full screen mode, word wrap, and view mode.
Syntax
$(function () {
// Get value
var returnsValue; // Type: boolean
returnsValue = $(".selector").wijeditor("option", "showFooter");
// Set value
var newValue; // Type: boolean
$(".selector").wijeditor("option", "showFooter", newValue);
});
var showFooter : boolean;
See Also