AP201-205
Ajax Poll Script v2.05
demo-efight
Preview
Need a poll administration panel? Check out
Ajax Poll Admin.
It's FREE!
Adding the Poll to Your Web Page
Step 1 Add the following two lines to the <head> section of your web page.
<head>
...
...
<script type="text/javascript" src="/wp/poll/jquery.js"></script>
<script type="text/javascript" src="/wp/poll/ajax-poll.php"></script>
...
...
</head>
Step 2 Add the following line to the <body> section of the web page.
The poll will appear inside the <div> tag.
<body>
...
...
<div class='ajax-poll' tclass='demo-efight'></div>
...
...
</body>
NoteThe following HTML code is a minimalist example of a web page that displays the poll.
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="/wp/poll/jquery.js"></script>
<script type="text/javascript" src="/wp/poll/ajax-poll.php"></script>
</head>
<body>
<div class='ajax-poll' tclass='demo-efight'></div>
</body>
</html>