Usefz89 / jquery-star-rating-plugin

Automatically exported from code.google.com/p/jquery-star-rating-plugin
0 stars 0 forks source link

IE10 always triggers "one star" rating #137

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Where can we see the problem?
> URL: http://jsfiddle.net/KCKZE/2/

What steps will reproduce the problem?
> 1. Visit http://jsfiddle.net/KCKZE/2/
> 2. Click on any star (other than first star)

What is the expected output? What do you see instead?
> Expect the selected star to be highlighted
> First star is always only star highlighted.

What version of the plugin/jQuery are you using?
> PLUGIN VERSION: v4.11 - 2013-03-14
> JQUERY VERSION: 1.9.1
> BROWSER(S) VERSION(S): IE 10

Feel free to provide any additional information below.

Original issue reported on code.google.com by martine...@gmail.com on 20 Jun 2013 at 12:18

GoogleCodeExporter commented 8 years ago
This is by design.

Your markup looks like this:
<label><input 1....></label>
<label><input 2....></label>
<label><input 3....></label>
<label><input 4....></label>
<label><input 5....></label>

But the plugin is designed to work with markup like this:
<label>
  <input 1....>
  <input 2....>
  <input 3....>
  <input 4....>
  <input 5....>
</label>

Can you change the markup in your project?

Original comment by diego.a...@gmail.com on 16 Jul 2013 at 3:39