Issues with ajax (POST) in Internet Explorer
I'm using ajax to send data to another page, but in IE 'message' is emptied some times.
I have an alert on 'message' in the JS-function and there is data there; for example: "I think that IE <br />is a pain in the..."
I insert all the values in MySQL, but as explained above, 'message' is emptied.
Do you have any ideas what to do?
- $.ajax({
- type: "POST",
- url: "send_ajax.php",
- data: ({countries: countries, organizations: organizations, systems: systems, message: message}),
- cache: false,
- success: function(data) {
- alert(data);
- }
- });