var EventRegistration= function () { /// Constructor function of the event EventRegistration class. /// return { /// ///Initializes the EventRegistration. /// /// /// 1.0.0 init: function() { // Slide toggle jQuery( '.registration_details' ).hide(); jQuery(".registration_button").on('click',EventRegistration.actions.toggleDetails); }, actions : { /// /// Click on registration details. /// /// /// /// 1.0.0 toggleDetails: function(event) { event.preventDefault(); jQuery( '.registration_details' ).slideToggle(); } } } //enf of return }; //end of class EventRegistration = EventRegistration(); jQuery(document).ready(function($) { EventRegistration.init(); });