Make input number fields change on mouse hover - Javascript jQuery

Javascript examples for jQuery:Form Number Field

Description

Make input number fields change on mouse hover

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
  <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script> 
  <script type="text/javascript">
    $(window).load(function(){//w ww.  ja v  a 2 s . c  o m
$("#spinner").hover(
    function()
    {
        $(this).focus();
    },
    function(){
        $(this).blur();
    });
    });

      </script> 
 </head> 
 <body> 
  <input type="number" step="1" id="spinner">  
 </body>
</html>

Related Tutorials