Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7847315
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T17:51:26+00:00 2026-06-02T17:51:26+00:00

Suppose I have an object, with some properties and methods: var Form = {

  • 0

Suppose I have an object, with some properties and methods:

var Form = {
    name: 'sign-up',

    show: function() {...},
    hide: function() {...},
    validate: function() {...},
    updateCurrency: function() {...},
    handleCheckBox: function() {...}
}

Now I want to call different methods when certain events happen in my form like so:

$('#country-select').bind('change', function() {
    Form.updateCurrency();
});

$("input[type='checkbox']").bind('change', function() {
    Form.handleCheckBox();
});

I have a lot of these event listeners, and frankly, I find them ugly listed out one by one like that and not tied directly to the object they relate to. Is there a more elegant way of encapsulating them within my object literal Form? Is there a best practice?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-02T17:51:28+00:00Added an answer on June 2, 2026 at 5:51 pm

    I like @gillesc answer, it’s on the right tracks.
    However, I think we can do better.

    The main issue with @gillesc answer is that its missing the dynamic aspect of things (event handlers for instance), also it forces your to define ugly callback functions.

    So heres how I think you should solve your problem.

    // Test object
    var testObj = {
        // Our event handlers. 
        // Notice how we must only define the callback function name here. 
        // Not the function itself. The callback function must be defined in testObj.
        handlers: {
            '#form submit': 'onSubmit'
        },
        // Method that will register all handlers to some selector
        registerHandlers: function() {
            var that = this;
            // Go through the handlers list.
            $.each(this.handlers, function(k, v) {
                // Parsing the event to two different parts. 
                // 1. trigger event
                // 2. selector
                var split = k.split(" "),
                    el = split[0],
                    trigger = split[1];
    
                // Delegating the trigger to selector
                $(document).delegate(el, trigger, that[v]);
            });
        },
        // Our actual callback function
        onSubmit: function(evt) {
            evt.preventDefault();
            alert("submit");
        }
    };
    

    How would it all work? Thats easy! We just need to call testObj.registerHandlers().

    JSFiddle demo

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Suppose I have some extension methods but also need to extend the object's state.
Propose to consider the following problem. Suppose we have some composite object. Are there
Suppose I have an object file ( source.o ) without function main . a
Suppose I have a customer object that has all of the standard customer properties
Suppose I have a method that takes an object of some kind as an
Suppose I have an object containing some data. How can I see that data
Suppose I have some kind of factory function which creates objects that are largely
Suppose I have an Interface with some properties: public interface IDummy { string First
Suppose you're searching some object with two boolean properties, A and B. What if
In C#, suppose you have an object (say, myObject ) that is an instance

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.