I have a textbox which has value like "PN & J".I am storing it in
var sState = $('#txtState').val();
and making Ajax call by
  data: 'Service=' + sSvendor + '&City=' + sCity + '&Sub=' + sCitySub + '&State=' + sState + '&Network=' + sNetwork,
But at the receiving end i m retrieving Value as only "PN " it is neglecting string after '&' character. how to overcome this ?
 
     
     
    