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

  • SEARCH
  • Home
  • 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 9042017
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T10:22:51+00:00 2026-06-16T10:22:51+00:00

I have a couple of JavaScript functions that I would like to reuse on

  • 0

I have a couple of JavaScript functions that I would like to reuse on multiple different pages, so I created an external .js file for the functions. I was wondering if it was possible to change the global variables of that javascript without changing the actual .js file. Here’s an example of what I mean:

Suppose I have this tag for my external JavaScript:

<script src="myscripts.js"></script>

Could I somehow define the global variables for the scripts in the <script> tag like so?

<script src="myscripts.js">
    sampleglobalvariable = "somevalue";
    sampleglobalvariable2 = "somevalue2";
</script>

Or like so?

<script src="myscripts.js"></script>
<script>
    sampleglobalvariable = "somevalue";
    sampleglobalvariable2 = "somevalue2";
</script>

Or would I have to define them inside the actual myscripts.js file?

  • 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-16T10:22:52+00:00Added an answer on June 16, 2026 at 10:22 am

    You can do this:

    <script>
        var sampleglobalvariable = "somevalue";
        var sampleglobalvariable2 = "somevalue2";
    </script>
    
    <script src="myscripts.js"></script>
    

    myscripts.js will have access to the global variables defined before.

    Alternatively you can turn myscripts.js into a server-side script (written in PHP for example). That would let you pass parameters like this:

    <script src="myscripts.js?foo=1&bar=2"></script>
    

    The server-side script would then have to read $_GET['foo'] and
    $_GET['bar'] and echo custom generated javascript back:

    echo 'var sampleglobalvariable = ' . json_encode($_GET['foo']) . ';';
    echo 'var sampleglobalvariable2 = ' . json_encode($_GET['bar']) . ';';
    echo 'alert(sampleglobalvariable);  // rest of the script, etc';
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

We have couple different web-apps that share the same db link. The hibernate layer
I need to build a small JavaScript library that would only be a couple
I have a couple of buttons in my flash application that call two different
I have several different JavaScript objects with methods that i want to keep separate.
I have an html file that references a couple of jquery files and has
I have a little piece of javascript to support couple of functions such as
I currently have some JavaScript code that calls a .php file to send me
I have couple of dozen pieces of data that I need to save and
I have couple resource DLLs that I currently load when application starts using following
ok I have couple of .NET classes that I want to use in VBA.

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.