I am using this jQuery star rating plugin and I would like to get the name of the star that I clicked. The code can be fiddled here. How can I get the name of the element that is clicked?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
With jQuery:
PROTIP: You should probably give each of your stars a unique ID so you actually know what is being clicked. |
|||||||||||||
|
|
Looks like that rating plugin creates it's own 'stars' to replace the ones you have in your original HTML, and they do not have the same |
|||
|
|
there you go: http://jsfiddle.net/ezmilhouse/7mY7w/
|
|||||||
|
|
Here is your solution. The script you included in the Resource Section was executing the function before, that's why it was rejecting the execution of the same function double time. Below is the link to your solution. See no changes at all and you can do whatever you want with the function variables |
|||||||||||||||
|


jsfile in the Resource section is executing the executing therating()function before. Check this fiddle out to see the problem. jsfiddle.net/Hg2xF – Jack Billy Apr 24 '11 at 15:29