I would like to send a request to remove something on server. I know that the difference between POST/GET is that it will be called only once, even when i try to delete the same thing a few times. The data I want to send is:
var data = {
id: "sht56uyy99",
names: ["john", "katherine", "jack", "angelina"],
logged: true,
number: 235
}
How to send this dictionary in $.ajax()
?