Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7967041
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T06:35:33+00:00 2026-06-04T06:35:33+00:00

I am using jquery to fire an ajax request when check box is changed

  • 0

I am using jquery to fire an ajax request when check box is changed to alter the boolean attribute ‘completed’ on resource ‘Task’. I have the following code regarding AJAX part, but I get this error > bad URI `/projects/1/tasks/[object%20Object]’

tasks.js.coffee

    $('#task_completed').bind 'change', (event) =>
      url = $('#task_completed').closest('form').attr('action')
      data = {}
      data.task = {}
      $.post({
        url: url
        data: data
        success: ->
          $('.task_headline').toggleClass('completed_task')
      })

task/show.html.erb

       <%= form_for [@project, @task], :remote => true do |f| %>
         <%= f.label :completed %>       
         <%= f.check_box :completed %> <!-- this automatically has the id="task_completed" -->
       <% end %> 
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T06:35:34+00:00Added an answer on June 4, 2026 at 6:35 am

    If you don’t want to specify data, don’t specify data.

        $('#task_completed').bind 'change', (event) =>
          url = $('#task_completed').closest('form').attr('action')
    
          $.post({
            url: url
            success: ->
              $('.task_headline').toggleClass('completed_task')
          })
    

    Also, you are forgetting a comma behind url:url, which might be necessary.

        $('#task_completed').bind 'change', (event) =>
          url = $('#task_completed').closest('form').attr('action')
    
          $.post({
            url: url,
            success: ->
              $('.task_headline').toggleClass('completed_task')
          })
    

    If it still happens then, you’ll want to replace the function temporarily by:

    window.alert($('#task_completed').closest('form').attr('action'))
    

    If this shows [object%20Object] in the alert then there’s something wrong where you are saving the form. Please note that [object%20Object] means that you are trying to print out an object which has no explicit toString() defined. This is exactly what happens when you try to convert {} to a string.

    Don’t believe me? Copy the following to your address bar and hit enter:

    javascript:var test = {};window.alert(test.toString());
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an MVC 3 app that is using jQuery AJAX to fire off
I'm using this Jquery function for available username check. How can I fire this
I'm using jQuery Mobile and have turned off the default AJAX handling of forms
I'm using jQuery and jQuery UI. I experienced that users sometimes fire the ajax-calls
I have a web page with several jQuery ajax calls which fire asynchronously at
I've been playing around with subscribing elements to AJAX events in jQuery. I have
I have a problem I am using jquery U.I tabs that load everything with
I'm making a request to a JSON page using jQuery's $.getJSON method, and from
I'm using the jQuery Form plugin to do an 'ajax' submit of my form,
I'm using a cross-domain Ajax request to an external API. Every so often it

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.