0

Does async: false in JQuery's ajax blocks the UI also during the callback

Or is it just until the answer from the server is received?

Nguyễn Văn Phong
  • 13,506
  • 17
  • 39
  • 56
Axel
  • 361
  • 2
  • 11
  • The callback blocks the UI either way. You can't have JS-Code running and at the same time not block the UI. – tkausl Jan 18 '20 at 13:18

1 Answers1

0

Short answer: Yes

To be more details, async: false means Other code waiting for this to finish

Read the link below to have a better understanding

What does "async: false" do in jQuery.ajax()?

Nguyễn Văn Phong
  • 13,506
  • 17
  • 39
  • 56