.js file is not responding

While i include 2 .js file one is not working…
Anybody is there to help me out this…

<html xmlns:mml=“http://www.w3.org/1998/Math/MathML”>
<head>
<script type=“text/javascript” src=“ASCII.js”></script>(if i inlcude this below script is not working)



<script language=“javascript” src=“./painter/htmlgui/controls1.js”></script>
</head>

You need to chance the second to <script type="text/javascript" src="./painter/htmlgui/controls.js"></script>.

There might be some collissions in the two scripts, such as them using the same variable names.

it’s not working

And you checked both scripts against collisions?

How to check it?

How to check it?

notepad comes to mind

If you don’t know how to check your scripts for variable name collisions, then you should seriously reconsider using Javascript before you’ve learned more about the language.

There’s a simple way to check for collisions.

Temporarily remove one script and see if the other works. If it does then put the second script back and temporarily remove the first. If that also works then there is a collision between the two scripts that needs to be fixed in order to use them both on the same page.

I checked like that only…
If i include both script it’s not working .

problem solved …
there was an error in one script.
Just now i solved it.
thank you friend for your response…