get input selection range - HTML CSS CSS Form

HTML CSS examples for CSS Form:input

Description

get input selection range

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(){<!--from   www .j  a  v a  2s  .  co m-->
$('#foo').select(function(e) {
   
   console.log('Changed');
   
});
    });

      </script> 
 </head> 
 <body> 
  <input type="text" id="foo">  
 </body>
</html>

Related Tutorials