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 6241485
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T11:46:35+00:00 2026-05-24T11:46:35+00:00

I using jQuery and have the following code, it’s a partial and I want

  • 0

I using jQuery and have the following code, it’s a partial and I want to know how could I retrieve a specific data on the onchange method and display the result into the next tag. (inside the span tag)

NOTE: this select field are generated on-the-fly, so, I can have N id’s.

<p class="fields">
  <%= f.collection_select(:part_id, @parts, :id, :title, { :prompt => true } , { :onchange => "?"  } ) %>
  <span class='part_price'> _ _ _ _ </span>
  <%= f.hidden_field :_destroy %>
  <%= link_to_remove_fields "remove", f %>
</p>

Also I’ve created the method for this action (I don’t know if this is right):

def retrieve_part_price
  @price = Part.find(params[:id])
  respond_to do |format|
    format.html { redirect_to(items_path)}
    format.json { render @price }
  end
end

And put that on the routes.rb:

resources :items do
  member do
   get :update_part_price
  end
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-05-24T11:46:35+00:00Added an answer on May 24, 2026 at 11:46 am

    Solved.

    my partial:

    <p class="fields">
     <%= f.collection_select(:part_id, @parts, :id, :title, { :prompt => true } , { :onchange => "load_part_price_select(this.id, this.options[this.selectedIndex].value);"  } ) %>
     <%= f.label(:part_id, "Price: ") %>
     <span class="price"></span>
     <%= f.hidden_field :_destroy %>
     <%= link_to_remove_fields "remove", f %>
    </p>
    

    application.js

    function load_part_price_select(id, value) {
    $('#' + id ).live('change',function() {
        $.ajax({
          url: '/parts/' + value + '/price',
          type: 'get',
          context: this,
          dataType: 'script',
          success: function(responseData) {
            $(this).nextAll("span.price:first").html(responseData);
          }
        }); 
    });
    };
    

    controller:

    def price
      @price = Part.find(params[:id])
      respond_to do |format|
        format.js { render :text => @price.price }
      end
    end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have just started using jQuery and although following code gets the job done,
I have the following snippet of code (I'm using jQuery 1.4.2): $.post('/Ads/GetAdStatsRow/', { 'ad_id':
I'm using jQuery with rails and have the following piece of code $('#related').html(<%= render
I am using jQuery Address Plugin and I have the following code. $.address.change(function(e) {
I have the following code, written using jQuery: var strval = '22' $(#quicknote).attr(href, javascript:location.href=/'http://site.com/notes/add?projects=/'+
I'm using JQuery 1.3.2 and have the following code - My html is -
I am using jQuery UI 1.8 and have the following code: var newDiv =
I am using jQuery autocomplete pluggin . I have the following code $().ready(function() {
Guys i have used the following code to disable an option using jQuery (
I'm currently using this jQuery Cycle Plugin: http://jquery.malsup.com/cycle/ And I have the following code:

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.