I am a using ajax_select
app for autocomplete, it is having its predefined JavaScript file for autocomplete, working fine for me, but I also want to add some extra paras in ajax call, now it is calling to url -
/ajax_select/ajax_lookup/sizes?term=lar
but what I want is:
/ajax_select/ajax_lookup/sizes?term=lar&filter=shoe
I tried many attempts but unable to add extra para because I am unable to understand how it is making ajax call and how it is passing parameters ?
There is no $.ajax
function ! how it is going to possible ?
This is full code of that js file:
I have read the documentation, there is noting related to it because it is a django app, there is not much info about its JavaScript file.
I am not much familiar with JavaScript, anyone how can help me ?