Use of Post and Get Method in Jquery

Use of Post and Get Method in Jquery

Use of Post Method in Jquery to Send Data on Button Click $(document).ready(function(){ $('input[id$="Button Id"]').click(function(){ var Fname="Text Value"; // name is local variable you can use without declaring. var res=$.post('Path of Generic Handler or Webservise', { name: Fname}, function (result) { alert(result); }); rsp.error