eesyphp/example/static/js/search.js
Benjamin Renard 4f47dc056d Tpl: Add stuff to handle static files
* Move example application in example sub-directory
* Widely use App::get() instead of Config::get()
2023-02-12 00:30:36 +01:00

7 lines
151 B
JavaScript

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