Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to change the standard Ruby on Rails form to let the user input a value with HTML5 range. I can't figure out how I should replace the standard "<%= f.text_field :W1 %>".

I have a slider :

<input class="slide" type="range" min="0" max="200" id="slider1">

Displaying value in :

<text id="W1">100</text>

Thanks to Ajax :

    $("#slider1").change(function () {                    
   var newValue = $('#slider1').val();
   $("#W1").html(newValue);
});

I can't find out where and how I should get the input value to set W1 ?

EDIT : HTML5 range is range_field form herlper in Ruby. I'm still searching for the right implementation of it so any help would be appreciated

share|improve this question
this is really just a javascript question, not so much about ruby. – nycynik Mar 8 at 16:03
The thing is that I'm in a Ruby form, so I want to have the Ruby way to send the W1 value in the _form.html.erb – Fabien Lebas Mar 8 at 17:28
In fact, I discovered, that I should use the range_field form helper from Ruby. I'm still fighting with it though :-) – Fabien Lebas Mar 8 at 18:03

2 Answers

$("#W1").val(newValue);

This should do it.

share|improve this answer
In the Ajax ? The <%= f.text_field :W1 %> was in the HTML part. – Fabien Lebas Mar 8 at 17:23
up vote 0 down vote accepted

I have it ! I had to replace

<input class="slide" type="range" min="0" max="200" id="slider1">

by

<%= f.range_field :w1, :min=>0, :max=>200, :class=>"slide", :id=>"slider1"%>

Thanks to those who helped me !

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.