In my rails app I have the follow URL path 'http://localhost/Teamleader/1', this gives me the first team leader and renders the view.
I'm trying to add a next link in my show.html.erb, so far I have the follow code:
<div id="home_link"> <%= link_to "Home" %> </div>
For testing sake, here is my jquery code:
$('#next_link').bind('click', function () {
var url = "/teamleader/" + SOME_COUNTER_HERE
if (url) {
window.location.replace(url);
}
return false;
});
After the user clicks, I want the page to go to 'Teamleader/2', and from 'Teamleader/2' to '/3' and so forth. Am I approaching this problem the right way? Or should this be done through the rails helper, path_to?

