Jump to content

Global Variables File?


atrum

Recommended Posts

I have been trying to find out if it is possible to create a global variables file. So that instead of putting all my vars, like field names or ids, common naming conventions and things like that.

 

Then I would be able to use those vars on any page.

 

Any one have any insight on this?

Link to comment
Share on other sites

yeah, just create a js file with your global vars and include it on every page.

 

It would probably be best to wrap your vars in a namespace so that you ensure they aren't overwritten

var atrum_app = {
    var_1: 'some value',
    var_2: 'value'
};

//usage

atrum_app.var_1; //some value

Link to comment
Share on other sites

So, say for example that I have 10 txt fields on a form, and I have other forms with the same naming conventions.

 

If I wanted to declare those txt fields in a global array, then include them on each page that I used those names. Then I can use them on any function, so long as I include that file. Correct?

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.