git.schokokeks.org
Repositories
Help
Report an Issue
bibweb.git
Code
Commits
Branches
Tags
Suche
Strukturansicht:
5390047
Branches
Tags
master
bibweb.git
assets
auftrag.js
Erlaube auch 3er-Kartons im Freitext
Bernd Wurst
commited
5390047
at 2020-06-07 14:14:19
auftrag.js
Blame
History
Raw
function valid_input() { val = $('#sonstiges').val(); if (val == '') { return false; } if (val.includes('3') || val.includes('5') || val.includes('10')) { return true; } if (val.length > 20) { return true; } return false; } $(function () { $('#submit').prop('disabled', true); $('#sonstiges').on('input', function () { $('#submit').prop('disabled', !valid_input()); }); });