0

I have this ajax function :

 success: function(response) {
        

   },
   error: (response) => {

  }

this is executing on other browser but on Internet Explorer it is showing this error : enter image description here

on this line :

error: (response) => {

Any solution, Thanks

user3653474
  • 2,669
  • 3
  • 30
  • 83
  • 1
    Change to `error: function(response) {` - why use function in success and arrow in error? IE does not do arrow functions – mplungjan Sep 27 '21 at 06:38

0 Answers0