/ Published in: JavaScript
Template for a Object Literal Architecture in javascript, in this case jQuery
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
//Object Literal jQuery var JS = { onReady : function(){ ... }, nextFunction : function(){ ... } } jQuery(document).ready(JS.onReady);