Get and Set Textbox Values using JavaScript

Get & Set Textbox Values
  1. // get the value of a textbox  
  2.   var TextboxValue = $("#TextboxID").val();  
  3.   
  4.   // set the value of a textbox  
  5.   $("#TextboxID").val("New Textbox Value Here");