Edit working on Firefox, only Chrome bug (and maybe others)
I try to get all event from a simple
The closest I can get is:
$('input[type=number]').on('input', function() { $(this).select(); var value = window.getSelection().toString(); window.getSelection().empty(); $('#value').text(value); });
Value:
Notice that when you type something, the field loses its focus...