exec¶
webix.
exec
(code)¶webix.exec helper.
Please look into the linked official documentation.
External references¶
Code¶
1 2 3 4 5 | webix.exec=function(code){
if (window.execScript) //special handling for IE
window.execScript(code);
else window.eval(code);
};
|