eesyphp/example/static/js/search.js

7 lines
151 B
JavaScript
Raw Normal View History

2020-04-18 00:51:33 +02:00
$( document ).ready(function () {
// Submit form on order change
$('select').change(function (e) {
$('button[name=submit]').click();
});
});