0

I am beginner in jQuery.

I want to know that as we can call server side method in ASP.Net by javascript using XMLHttpRequest object and GET verb, similarly can we call the same using jQuery $get() or we are able to do it by POST onley?

Thanks.

Prateek Deshpande
  • 215
  • 1
  • 5
  • 18

1 Answers1

0

Yes, you could use any of;

  • $.get();
  • $.post();
  • $.ajax();
Matt Tew
  • 1,581
  • 1
  • 9
  • 15