This topic is locked
[SOLVED]

 (EditStarRating.js:49) TypeError: 'undefined' is not a function (evaluating '$('#star_'+hidden_id).live')

1/18/2015 3:01:22 PM
StarRating plugin support forum
I
iVoteSize author

I've had no luck installing this StarRating plug in into my PHPRunner 8.0 (Build 23092 x64); instead I'm getting a:

(EditStarRating.js:49) TypeError: 'undefined' is not a function (evaluating '$('#star_'+hidden_id).live')


... error in my console (see attachment). Any suggestions are welcome (I have not yet have time to debug hidden_id).

I
iVoteSize author 1/18/2015

Solved (with help from http://api.jquery.com/live) by changing EditStarRating.js >> line 46, from:

$('#star_'+hidden_id).live('click',function(e) {



... to:

$('#star_'+hidden_id).on('click',function(e) {