HTML CSS examples for HTML Tag:input text
on change input text
<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 w w w .j a v a2s. com--> $("#kat").change(function(){ console.log("Hello"); }); }); </script> </head> <body> <input type="text" id="kat" value="0"> </body> </html>