This is the community forum. For a developer response use the Client Area.
Follow us on Facebook, Twitter and YouTube!

Javascript error
#1

First off great script! Everything works great except for when I try to like, dislike, or flag a comment. I have an attached javascript file to show and hide elements of the page when a user clicks on a particular tab. When commentics is working correctly my attached file does not. When I comment out lines 186-192 of the comments.php my javascript file works but the like, dislike, and flag buttons do not.

<script type="text/javascript">
// <![C[/code]DATA[
if (typeof jQuery == "undefined") {
document.write("<scr" + "ipt type=\"text/javascript\" src=\"http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js\"></scr" + "ipt>");
}
// ]]>
</script>

I have also tried changing 1.2.6 to 1.6.1 but still end up with the same problem. Below is a link to the javascript file I have linked to my page:

http://gamebreezy.com/game-template/java...nd_show.js

I am pretty new with javascript and php any kind of help would be very much appreciated.

Thanks
Reply
#2

Hi,

The script uses jQuery 1.6.1, so I'm not sure why yours uses 1.2.6.

Anyway I noticed that your JavaScript file contains Prototype. This can sometimes conflict with jQuery. The link below has a possible solution. Try changing the code to this:

Code:
<script type="text/javascript">
// <![CDATA[
if (typeof jQuery == "undefined") {
document.write("<scr" + "ipt type=\"text/javascript\" src=\"http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js\"></scr" + "ipt>");
}
jQuery.noConflict();
// ]]>
</script>

http://docs.jquery.com/Using_jQuery_with..._Libraries

Have you completed the interview?
Reply
#3

Hi Steven,

The like, dislike, or flag buttons only work when I use 1.2.6 and I am not sure why either. I tried your code with 1.2.6 and 1.6.1 and it made my prototype work but not jQuery. I have tried all the methods of code that was found on the link you sent me and nothing seems to work. Please let me know if you have anymore ideas, I would really appreciate it.

Thanks much
Reply


Possibly Related Threads…
Thread / Author Replies Views Last Post
Last Post by Deparis
20-Jul-2014, 01:22 PM
Last Post by skilife
12-May-2012, 12:35 PM

Forum Jump:


Users browsing this thread: 1 Guest(s)