Free Chat Java Script

Do you want to share WYSIWYG Web Builder tips, tricks, tutorials or useful HTML code? You can post it here...
(no questions or problems please, this section is not monitored by support).
Forum rules
This section is to share tips, tricks and tutorials related to WYSIWYG Web Builder.
Please do not post questions or problems here. They will not be answered.

PLEASE READ THE FORUM RULES BEFORE YOU POST:
viewtopic.php?f=12&t=1901
Post Reply
User avatar
Patrik iden
 
 
Posts: 479
Joined: Wed Mar 24, 2010 9:07 pm
Location: Sweden

Free Chat Java Script

Post by Patrik iden »

Just add thees 3 lines of code between <head> </head> tags of your webpage.

Code: Select all

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript">var plugChatInTheme = "plugchatin";</script>
<script type="text/javascript" src="http://static.plugchat.in/js/plugchatin-en.min.js"></script>
The Chat will show at the bottom of screen.

Here you can find out more about this Chat script, and how you can use it.
http://plugchat.in/

Thank you.
User avatar
BaconFries
 
 
Posts: 5328
Joined: Thu Aug 16, 2007 7:32 pm

Re: Free Chat Java Script

Post by BaconFries »

Nice....but it will most likely not work along with other jQuery Extensions or jQuery objects used within WB as it is using a older version of jQuery 1.4.2, all the jQuery objects within WB are using 1.7.2 as are many of the new extensions getting made....I havent tested but it may not even work using the latest jQuery 1.7.2 as it may only work with the older version 1.4.2
User avatar
Patrik iden
 
 
Posts: 479
Joined: Wed Mar 24, 2010 9:07 pm
Location: Sweden

Re: Free Chat Java Script

Post by Patrik iden »

BaconFries wrote:Nice....but it will most likely not work along with other jQuery Extensions or jQuery objects used within WB as it is using a older version of jQuery 1.4.2, all the jQuery objects within WB are using 1.7.2 as are many of the new extensions getting made....I havent tested but it may not even work using the latest jQuery 1.7.2 as it may only work with the older version 1.4.2
Well i dont know if it makes a differens, but i made it this way now.
I put the following code in a HTML box and set it to be inside <body> tag.

Code: Select all

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript">var plugChatInTheme = "plugchatin";</script>
<script type="text/javascript" src="http://static.plugchat.in/js/plugchatin-en.min.js"></script
Post Reply