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 7031361
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T00:47:36+00:00 2026-05-28T00:47:36+00:00

I am trying to implement this way to structure my jquery binds, it worked

  • 0

I am trying to implement this way to structure my jquery binds, it worked perfect.

I just have one question:
In the sample in the article he put all the views in one namespace called SITENAME, and like that all views should exist in one .js file, how can I put the views in different .js files?
for example:
To put common view in common.js file and users view in users.js

  • 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-05-28T00:47:36+00:00Added an answer on May 28, 2026 at 12:47 am

    Namespace SITENAME is just a JavaScript object.

    If you have code like this:

    SITENAME = {
      common: { ... },
      example1:  { ... },
      example2:  { ... }
    }
    

    You can change it to:

    SITENAME = {
      common: { ... }
    };
    SITENAME.example1 = { ... };
    SITENAME.example2 = { ... };
    

    As you can see now the example1 and example2 objects are still defined inside SITENAME, but they are separated from the definition of SITENAME object itself.

    So in your case you need to create your “namespace” object first (e.g. create app.js which will contain also some configuration stuff) and then you create separate .js files that will define own properties on already existing SITENAME object.

    Example:

    HTML:

    ...
    <head>
      ...
      <script src="js/app.js" />
      <script src="js/example1.js" />
      <script src="js/example2.js" />
    </head>
    ...
    

    app.js (insert here common functionality, configuration, etc):

    App = { ... }; 
    

    example1.js:

    App.example1 = { ... };
    

    example2.js:

    App.example2 = { ... };
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to implement this demo on my local machine. http://bit.ly/4g4o1r I have
I'm trying to implement the answer to this SO question . The problem is:
This a conceptual question on how one would implement the following in Lisp (assuming
I'm trying to implement a system where I'll have key-value structure pairs. They will
I'm trying to implement this pattern in my WinForms application (I don't like it,
I'm trying to implement this scenario using Unity and i can't figure out how
I'm trying to implement something like this: <div> <table> <thead> <tr> <td>Port name</td> <td>Current
I'm trying to implement the shake tutorial on this page, but I think I'm
I'm trying to implement the Media Player custom field control described in this MSDN
I'm trying to implement routing such as the following: posts/535434/This-is-a-post-title posts/tagged/tags+here // Matches {controller}/{action}/{id}

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.