Advertisement
Guest User

Untitled

a guest
May 26th, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. <script type="text/javascript">
  2. $(window).load(function(){
  3. $('#tb1').on('change', function() {
  4. if($(this).val() != ""){
  5. $("#area2").show();
  6. }
  7. });
  8. $('#tb1').focus('change', function() {
  9. $("#area2").show();
  10. });
  11. }); // Closes window.load
  12. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement