In my main Web Page (Viewer.aspx) I have a javascript script tag like this

<script language="javascript" type="text/javascript">

function initialize() {
     var map = $find('Map1');           
     map.add_mouseMove(mouseMove);  

 }

</script>

Within those script tags I have a function. Is it possible to call another function that is in a different script tag like this?

<script language="javascript" type="text/javascript" src="Resources/JavaScript/proj4js-combined.js">

function mouseMove(sender,eventArgs) {
     var source = new Proj4js.Proj('EPSG:3116');
        var dest = new Proj4js.Proj('WGS84');

        var p = new Proj4js.Point(px, py);
        Proj4js.transform(source, dest, p);    
 }

</script>
link|improve this question

of course it didn't show my script tags that I was trying to display. The first script tag was like script language="javascript" type="text/javascript" – Josh Apr 20 '10 at 15:38
@Josh, I have fixed that for you. When posting code you need to click the binary button so it formats it properly. Also, have you tried checking the code to see if it works? :) – Anthony Forloney Apr 20 '10 at 15:38
the second was like script language="javascript" src="Resources/JavaScript/proj4js-combined.js" – Josh Apr 20 '10 at 15:39
6  
Your second tag seems to have both a src and inline content, which I don't think most browsers will handle. You'd want separate tags for that (but yes, they can call functions in each other). – T.J. Crowder Apr 20 '10 at 15:40
1  
As T.J. said, definitely don't combine script tags with src and inline content. That's super-bastardized, and if you're going to have external Javascript, you might as well have all (or as much as possible) in the external JS file. – Matt Ball Apr 20 '10 at 15:44
show 3 more comments
feedback

3 Answers

up vote 1 down vote accepted

As per your comment, here's what T.J. was talking about - you need to turn your second script block into something like this:

<script type="application/javascript" src="Resources/JavaScript/proj4js-combined.js"></script>
<script type="application/javascript">

function mouseMove(sender,eventArgs) {
     var source = new Proj4js.Proj('EPSG:3116');
        var dest = new Proj4js.Proj('WGS84');

        var p = new Proj4js.Point(px, py);
        Proj4js.transform(source, dest, p);    
 }

</script>

...but you should really just move the inline code block (what's inside of the 2nd <script> tag in my answer) to an external Javascript file.


Edit 1: What's the programming background you're coming from? If it's something like C# or Java, you'll need to forget what you know about those and approach Javascript completely differently. Javascript is an interpreted language, not a compiled one; among other things, this means that the order in which your functions are declared matters.

When I say "function declaration," I mean anything that looks like this:

function myNewFunction()
{
   // anything else here
}

This tells the Javascript interpreter about a new function, called myNewFunction, whose body consists of whatever is in the curly braces.

Here's an example of what I'm talking about when I say you are using a function before you've declared it. Consider the following block of code (in isolation from any other Javascript, say, in an external Javascript file):

function foo() // this line declares the function called "foo"
{

}

function bar() // this line declares the function called "bar"
{
    foo(); // this line invokes the previously declared function called "foo"
}

This will work as expected, because foo() was declared before you called it. However, what (it sounds like) you're trying to do is analogous to this:

function foo() // this line declares the function called "foo"
{
    bar(); // this line tries to invoke the function called "bar"
           // but it hasn't been declared yet! so it's undefined
}

function bar() // this line declares the function called "bar"
{

}

If you were to run this second Javascript snippet, it wouldn't work, because you're calling a function before it was declared.*

*Footnote: this is not actually the case, because using this syntax (function foo() { ... }) does something special and magical in Javascript. My particular example will actually work, but it illustrates the problem you're having.

link|improve this answer
That makes sense to me now, thanks. I'm still getting mouseMove is undefined so do I need to do anything extra at map.add_mouseMove(mouseMove) to get it to jump to that function?? – Josh Apr 20 '10 at 15:50
It sounds like you're calling map.add_mouseMove(mouseMove) before you've defined your mouseMove function. Where is the code that executes map.add_mouseMove(mouseMove)? – Matt Ball Apr 20 '10 at 15:52
In my initial post that is pretty much how I have it. I incorporated the additional code you and others suggested in second script tag but that's about it – Josh Apr 20 '10 at 15:56
That can't be right, because your question shows you're still combining inline and external script tags. But, it looks like I'm right, that you're calling map.add_mouseMove before you've defined your mouseMove function. – Matt Ball Apr 20 '10 at 15:58
in the first script tag above the function called initialze I have this code Sys.Application.add_init(initialize); I don't really understand what you mean by "defined the mouseMove function". I can't simply call that function even though it's in another script tag? Sorry, I'm still learning – Josh Apr 20 '10 at 16:02
show 7 more comments
feedback

Yes, this is done quite regularly as Javascript functions can be put into other files and pulled into pages that work this way.

link|improve this answer
feedback

Your second script tag specifies a src. The contents of the .js file will be loaded and parsed, but the code inside the script tag (the mouseMove function) will be ignored. If you want both the function and the contents of the .js file, you need to separate them into two different script tags.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.