<html> <head> <script src="poll.js"></script> </head> <body>
<div id="poll"> <h2>Do you like the new Iphone so far?</h2>
<form> Yes: <input type="radio" name="vote" value="0" onclick="getVote(this.value)"> <br>No: <input type="radio" name="vote" value="1" onclick="getVote(this.value)"> </form> </div>
</body> </html>
|