Blame | Letzte Änderung | Log anzeigen | RSS feed
/**Custom module for you to write your own javascript functions**/var Custom = function () {// private functions & variablesvar myFunc = function(text) {alert(text);}// public functionsreturn {//main functioninit: function () {//initialize here something.},//some helper functiondoSomeStuff: function () {myFunc();}};}();jQuery(document).ready(function() {Custom.init();});/***Usage***///Custom.doSomeStuff();