Sends a log message to built-in log console.
Note: n order to use this method, you must set the enableLogs option to true.
Syntax
$(function () {
var returnsValue; // Type: any
// Parameters
var msg; // Type: string
var className; // Type: string
returnsValue = $(".selector").wijevcal("log", msg, className);
});
function log(
: string,
: string
) : any;
Parameters
- msg
- Log message.
- className
- Optional. CSS class name that will be applied to the destination message.
Few predefined classes are available:
"error", "warning", "information", "status"
See Also