I am trying to catch the focusin and focusout events in a range input field type.
In Firefox 41, Chrome 46, IE 11 and Opera 33 it is working (it is sent to console in and out respectively) but not in Safari 5 and Mac OS X 10.9 with Safari 7.
Am I missing something?
HTML
<input id="slider" type="range" min="100" max="500" step="10" />
Script
$ ( 'input[type="range"]' ). on ( "focusin" , function (){
console . log ( 'in' );
}). on ( "focusout" , function (){
console . log ( 'out' );
});
Thanks.