tags:

views:

3019

answers:

2

Looking to make a simple poll, does not even need to be cookie based I don't care how many votes are cast. Is there a plugin or something simple like this?

+1  A: 

Search in the plugins area of jquery turned up

http://plugins.jquery.com/project/jPoll

Si Philp
Yeah I had downloaded that to play with, but it does not keep track of votes. Is there a way to make a "mock" database or something to connect and store?
thatryan
You'd need to create a server side page that accepts the votes etc from the above plugin. You could do it through xml files if you didn't have access to a DB system.. Again would be down to server side page.
Si Philp
A: 

This is a useful tutorial - let me know if it works for you

using jQuery to build a poll

Here is a demo of the poll working. It uses flatfiledb to store the votes:-

live demo

Jonathan Lyon