Support Forums - Classified Ads Script Osclass
Osclass theme support => Free themes => Topic started by: Gilou26 on October 12, 2019, 03:00:45 PM
-
Hello.
Is it possible that the search will start automatically as soon as a category has been selected (without having to click on the magnifying glass).
Thank you in advance for your help.
Osclass 3.8.0 / Osclasswizards 2.0.6
-
It's just jquery code that will be binded to category field, you could quickly find it on stackoverflow
-
Thank you for your answer.
I've never used stackoverflow, I've looked but I'm having trouble doing my research (my English is not very good).
Can you tell me how to find the right jQuery code and what to change on it?
Thank you in advance.
-
@Gilou26
Something like:
$(document).ready(function() {
$('body').on('change', 'select[name="sCategory"]', function(e) {
$(this).closest('form').submit();
});
});
-
Hello.
Great, it works very well.
Thank you very much for your help.
-
Welcome