Simple Ajax Up/Down Voting Script that allows users to vote an item in a webpage. The easiest way for voting anything on your web site. Allow users to click on the up and down arrows to vote the events.
Features
Free Script for websites where users could vote if they "Like" or "Don't Like" the events.
Easy customization - change colors, fonts and styles using CSS.
No database is required as results are stored in file.
Voting script that supports almost all browsers.
Preview
Ajax Up/Down Voting Script
Downloads
Copy and Paste the script to make it use in your webpage.
Javascript Code
<!-- Script by hscripts.com --> <!-- More scripts @www.hscripts.com --> <script type="text/javascript"> var httpa; var browser = navigator.appName; function createRequestObject() { var request_o; //declare the variable to hold the object. if(browser == "Microsoft Internet Explorer") { /* Create the object using MSIE's method */ request_o = new ActiveXObject("Microsoft.XMLHTTP"); } else { /* Create the object using other browser's method */ request_o = new XMLHttpRequest(); } return request_o; //return the object