I have a model let's say Student and I want to edit a row in the table
name students through Ajax after clicking a button, what is the correct
way to do this? Also, please note I want to edit value inside one column
followers

Here is the js code:

    $(document).ready(function(){
    $('.clap').click(function(){
        var dataString = "student[followers]=5";
         $.ajax({
                type: "POST",
                url: "/students/",
                data: dataString,
                success: function() {
                  window.alert('success');
                  }
              });
    });
});

-- 
Posted via http://www.ruby-forum.com/.

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to rubyonrails-talk+unsubscr...@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/rubyonrails-talk/d3c0ecb93ba57b861a36ec94b997f184%40ruby-forum.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to