PDA

View Full Version : jQuery Problem!



stevepender100
28th Jan 2012, 02:13 pm
Hey! I should know this. I cannot include two jQuery scripts on one page! Would anybody be able to tell me how to do this please? :)

Vlad
28th Jan 2012, 07:48 pm
If I understand the question correctly I think it should be something like this:

<head>
...
<script src='js/stuff1.js' type="text/javascript"></script>
<script src='js/stuff2.js' type="text/javascript"></script>
<script src='js/stuff3.js' type="text/javascript"></script>
...
</head>
<body>
...

Here you have 3 different scripts linked to one html file.

stevepender100
4th Feb 2012, 02:59 pm
Thank you! That was very helpful :D I have done it now

Vlad
4th Feb 2012, 03:49 pm
Glad to be of service.