RailsCasts Pro episodes are now free!
Learn more or hide this
GitHub User: xpepper
Site: xplayer.wordpress.com
I had the same issue. I fixed the jquery syntax with this:
$(link).parent().before(content.replace(regexp, new_id));
instead of the old syntax (prototype I guess)
$(link).up().insert({ before: content.replace(regexp, new_id) });
I had the same issue.
I fixed the jquery syntax with this:
$(link).parent().before(content.replace(regexp, new_id));
instead of the old syntax (prototype I guess)