I\'m working on a Rails 4 app. I need to trigger a click in a link using javascript (or jQuery). I have this in my view:
<%= link_to t(\'.fixture\'), fixt
Though its very late and you have got your problem solved, but here is the actual solution :)
$('#fixture-link')[0].click();
You missed [0] portion.
[0]