Guest User

Untitled

a guest
Jun 25th, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. <script type="text/javascript">
  2. $(window).load(function(){
  3. $('#tb1').on("change keyup",function(e){
  4. if(this.value!==undefined || this.value!==null || $.trim(this.value)!=="" ) {
  5. $("#area2").show();
  6. }
  7. });
  8. $('#tb1').focus('change', function() {
  9. $("#area2").show();
  10. });
  11. }); // Closes window.load
  12. </script>
  13. You can use like this
Add Comment
Please, Sign In to add comment