I want to make $.get() method synchronous in my function. In ajax aysnc : false helps me, now how do i do the same to to $.get()
aysnc : false
$.get()
va
$.get also accepts parameter like this
$.get({ url: url,// mandatory data: data, success: success, dataType: dataType, async:false // to make it synchronous });