Home » News » AJAX Shoutbox YShout Updated t ...

News by JavaScriptSearch


AJAX Shoutbox YShout Updated to v.3

 


"YShout 3 functions a lot smoother than its previous iterations, providing an all-around better user experience."

JavaScriptSearch
Friday, August 18, 2006; 07:07 AM

YShout is a lightweight, open source code package that enables webmasters to easily create a snazzy feedback mechanism on their website.  Yshout weaves PHP and Asynchronous JavaScript and XML (AJAX) into a chat application that allows site visitors to communicate in real time or, alternatively, spam the living daylights out of each other.


The latest version of YShout comes with a new Admin Control Panel, that loads in a modal window on top of the chat application.  The admin panel allows shoutbox administration (read "banning of users") and page customization. 

The shoutbox is licensed under the Creative Commons Attribution 2.5 License, which means that anyone can modify it and use it on commercial or noncommercial websites. The application outputs validating XHTML and is styled with customizable CSS. 

Installation is next to effortless.  You can place a YShout on a webpage by uploading the required JavaScript and CSS files in a dedicated directory, changing the permissions for that directory, and inserting the following code into the HEAD of the document:

<script src="yshout/js/jquery.js" type="text/javascript"></script>
<script src="yshout/js/yshout.js" type="text/javascript"></script>
<link rel="stylesheet" href="yshout/css/yshout.css" />

<script type="text/javascript">
$(document).ready(function(){
new YShout();
yPath: 'yshout/',
log: 1

});
</script>

 

The last thing required for YShout to work is a single line in the document BODY.

<div id="yshout"></div>

 

Yshout was written by Yuri Visnevsky, a programmer from New Jersey.  On his website at yurivish.com/yshout he has provided fully functional example of Yshout, as well as the code for the application. 

 

Advertisement

Partners

Related Resources

Other Resources

arrow