-3

I am new to Javascript and html.

I need to send data through post method and like

{"username":"user1111","fileNumber":"20120097072286","fileType":"2"}

and read the response in Javascript.

If any one know the solution please help me.

Bart Kiers
  • 166,582
  • 36
  • 299
  • 288
kiran
  • 3,244
  • 7
  • 34
  • 57

1 Answers1

1

You can do this using jquery AJAX like this:

$.post{
  url:,
  data:{},
  success:function(){}
}
V31
  • 7,626
  • 3
  • 26
  • 44