eesyphp/example/static/js/search.js

7 lines
149 B
JavaScript
Raw Normal View History

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