This is the line to the "EasyComment jQuery plugin" page: http://www.jswidget.com/lab/easy-comment.html How to setup/use EasyComment? Suppose your domain is http://www.your-domain.com/, and EasyComment will be installed right under the root directory. Login to your web server and create a folder under your domain directory called easy-comment Download the source code from here and upload the following files to easy-comment: jquery.easy-comment.min.js ec-comment.php ec-moderator.php ec-dashboard.html ec-comment.png ec-close_box.png Within
section of your web page, add the following two lines: Within your web page, add
element to the right place as a comment container. For example:
For comment container, you should always give an ID attribute so that you can seperate it from others when you are in the dashboard. To use EasyComment, you will have to enable it within jQuery.ready() function. jQuery(document).ready(function(){ $("#my-comment").EasyComment(); }); Or specify the EasyComment path explicitly if you are not install EasyComment under root directory jQuery(document).ready(function(){ $("#my-comment").EasyComment({ path:"/path-to-easy-comment/easy-comment/" }); }); Notice the path here should be the absolute path to the folder where you install EasyComment. For example, if your domain is http://www.jswidget.com/, and you create a folder called my_comment under the domain root folder. You should be able to access that folder by typing http://www.jswidget.com/my_comment in the browser's address bar. The path value should then be "/my_comment/". Below is a functional template file. EasyComment Sample
View Example You can now start using EasyComment.