I've downloaded the star rating plugin that Captain JR enhanced. It's not working in IE 6 or 7. Working fine in FF2 and OP9. In IE it's showing the actual form elements (select, label and button) as well as the stars below. The stars themselves do not stay highlighted. I see the demo at http://john.jquery.com/plugins/rating/ works just fine in IE6+7.
Can some one spot my problem? in my head: <script type="text/javascript" src="/_resources/js/jquery.js"></script>
<script type="text/javascript" src="/_resources/js/jquery.rating.js"></script> <script type="text/javascript"> $(document).ready(function(){ $('form.rating').rating(); }); //doc.ready </script>
in my body (this all that's in there while testing)
<body> <form class="rating" title="Average Rating:" action="seRating.cfm"> <fieldset> <label for="r4">Rate Me!</label> <select id="r4" name="rating"> <option value="0"selected="selected">0</option> <option value="1">1</option> <option value="2">2</option> <option value="3">3</option> <option value="4">4</option> <option value="5">5</option> </select> <input type="submit" value="Submit Rating" /> </fieldset> </form> </body>
My HTML validates. hopefully that all shows up! I'm using jQuery 1.1.2 $Rev: 1465 $ Thank you, Will
_______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/