I am using a jQuery plugin for creating classes. But I don't want my classes to be initialized unless I want them to. How can I prevent the following code from initializing, but be accessible if need be?
window.classes.my_custom_class = new(Class.extend({
init: function() {
// stuff()
}
}));