/    Sign up×
Community /Pin to ProfileBookmark

multiple js files (call function to each other)

I am having trouble calling a function that lies within a second js file. I am sure that I am just not calling it correctly or I need to reference it like I do on the html page. Could someone give me the correct syntax please. Its inside a catch statement but if the function is on that page it works so I don’t think that is it.

Thanks in advance.

[CODE]
function ZoomToLevel(iLevel) {
try
{
m_mapViewer.setLevel(iLevel);
//Request a new map.
submit();
}
catch(errorObject)
{
// This is the name of the function that resides in a file called error.js
HandleErrors2();
}
}

[/CODE]

to post a comment
JavaScript

1 Comments(s)

Copy linkTweet thisAlerts:
@NatdripJun 10.2005 — in the javascript tag you'll need to do something like this

<script language="Javascript" src="root/error.js"></script>

this will make it so that you can now call the function..
×

Success!

Help @gslim spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 6.15,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @nearjob,
tipped: article
amount: 1000 SATS,

tipper: @meenaratha,
tipped: article
amount: 1000 SATS,

tipper: @meenaratha,
tipped: article
amount: 1000 SATS,
)...