Skip to main content

Bug Tracker

Side navigation

Ticket #4260: test.html


File test.html, 0.6 KB (added by fracmak, February 26, 2009 07:30PM UTC)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 
                    "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
  <script src="http://code.jquery.com/jquery-1.3.2.js"></script>
  
  <script>
  $(document).ready(function(){
    $("#insert").append('<input type="text" name="handset_entry_pattern"/>').focus(function () {
         $(this).next("span").css('display','inline').fadeOut(1000);
    }).append("<span>focus fire</span>");

  });
  </script>
  <style>span {display:none;}</style>
</head>
<body>
  <p id="insert"></p>
</body>
</html>

Download in other formats:

Original Format