eesyphp/public_html/js/search.js
2020-04-18 00:51:33 +02:00

7 lines
151 B
JavaScript

$( document ).ready(function () {
// Submit form on order change
$('select').change(function (e) {
$('button[name=submit]').click();
});
});