Skip to content
Advertisement

How to call variabled ajax

I put the ajax call in a variable, how can I call it again and pass some parameters to the data attribute of the ajax?.

JavaScript

now I have a date range picker, If i click apply button i just want to call the request variable to be able to trigger the ajax call again and pass some parameters.

JavaScript

TIA

Advertisement

Answer

I don’t think you can do that using a variable. I suggest you to define a function that contains your ajax request then you can call this function into your code like this:

JavaScript

After declaring your function you can use it like this:

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement