Resize Textbox height and width according to screen size

  1. $(document).ready(function () {  
  2.     $("#hiddenScreenWidth").val($(window).width());  
  3.     $("#hiddenScreenHeight").val($(window).height());  
  4.   
  5.     if($(window).width() < 370) {  
  6.         $("#TextBox1").width($(window).width()-10);  
  7.     }  
  8.   
  9.     if ($("#TextBox1")[0].scrollHeight > $(window).height() - 90) {  
  10.         $("#TextBox1").height($(window).height() - 98);  
  11.     }  
  12.  });