What are the best methods for assigning a change event handler to an HTML5 numeric <input> control?
-
Is there any native method of attaching the handler to the up and down arrows that appear when the 'step' attribute is assigned?
-
Answer:
Try listening for the input event. <input type="number" min="0" max="12" step="3" id="range" /> // jQuery $('#range').on('input', function() { console.log($(this).val()); }); IE9's implementation fails to fire when content is deleted, but that shouldn't be a problem for the arrow controls. You can test it out on my Fiddle here: http://jsfiddle.net/bulat/fcNA8/.
Bulat Bochkariov at Quora Visit the source
Other answers
with jQuery click and change events work as well ;) But you can also do it natively : function getInputValue(el) { var result = el.value; //console.log(result); document.getElementById("result").value = result; }â http://jsfiddle.net/G8hgA/1/
Kamel Laïmène
The click event seems to work, but the change event won't fire correctly on Chrome or Safari. http://jsfiddle.net/G8hgA/11/
Keith Ratner
Related Q & A:
- What is the best way to calculate a date difference?Best solution by Stack Overflow
- What's the best site to find a job online?Best solution by Yahoo! Answers
- What is the best way to sell a timeshare?Best solution by Yahoo! Answers
- What is the best way to get a job on cruise ships without spending money?Best solution by cruiseserver.net
- What is the best diet plan for a vegetarian that has IBS?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.