The below is the code snipset.
$.ajax({
url: $(this).attr('href'),
type: 'GET',
async: false,
cache: false,
timeout: 30000,
From above "async: false" is required to wait the response.
$.ajax({
url: $(this).attr('href'),
type: 'GET',
async: false,
cache: false,
timeout: 30000,
From above "async: false" is required to wait the response.
No comments:
Post a Comment