jQuery Form How to - Stop people from writing in text input boxes








Question

We would like to know how to stop people from writing in text input boxes.

Answer


<!--  ww w  .  j a v a2  s .  c o  m-->
<html>
  <head>
    <script type="text/javascript" src='http://code.jquery.com/jquery-1.5.2.js'></script>
    <script type="text/javascript">
        $(document).ready(function(){
            $("input").focus(function () {
                  $(this).blur();

            });
        });
    </script>
  </head>
  <body>
    <body>
     <p><input type="text" /> <span>focus event fire</span></p>
    </body>
</html>

The code above is rendered as follows: