-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
  • 161,100
  • 35
  • 287
  • 281
kiran
  • 3,158
  • 5
  • 33
  • 56

1 Answers1

1

You can do this using jquery AJAX like this:

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