From what I see on your page you are loading jQuery 1.3, 1.7 and 2.0 in different places, it generates conflicts and you only really need one of them. Whatever conflicts is probably because you have old code, changing that code the problem should be solved. It is never good to load different versions from the same library.
Leaves only the most modern jQuery (2.0) and puts here on the site new questions you may have with any errors you see in the console have on the console.
What could be your problem is that different pages pick up jQuery from different directories. In this case there is no library overlay and, although it is always good to use more modern versions, it is not urgent to change and can work with both.
What date do you have
<script src="assets/plugins/jquery-2.0.3.min.js"></script>
<script type="text/javascript" src="js/jquery.min.js"></script> // jQuery v1.7.2
and still this link you indicate in the question with http://www.redepurple.com.br/social/Code/chatjs/jquery.js
, which is version 1.3...
If you want more help than this you have to specify which page gives problems and put here the HTML of that page. The ideal is to isolate the code that does not work and show here only this.
Are you putting the two at once or is it when you put the
.min
troublesome ?– Diego Souza
Why use both?
– Maniero
The min I use in my other project, and the jquery I use in a chat. When I take out jquery, my other project works, when I stop working. And then I’m in this, not knowing what to do
– Tena Andrade
Please, people really wanted it to work :\
– Tena Andrade
And so, what stops working is a basic Jquery, like sending a POST form, simple things, weird...
– Tena Andrade
There’s something wrong with your console when you take off jQuery 1.3?
– Sergio
Look do not know what is console, but what happens is that everything stops working, when I send a message the refresh page instead of working to Function
– Tena Andrade
@Tenaandrade we go slow. Put the
.min
jQuery on the page, save. Then open your page in the browser, press CTRL SHIFT J on the keyboard. Opens an Info Console. Refresh the page and see what error it gives. But Sergio is probably right, you’re putting one library on top of the other.– Diego Souza
Thanks gorgeous @Gumball gives it: VM2515:1 Uncaught Referenceerror: scrollcode is not defined
– Tena Andrade
Haaaa @Tenaandrade. You may be placing the script under the other codes. The
.min
has to be everyone’s first script. Then comes the script fromscrollcode
. That’s what I imagine for now...– Diego Souza