git.schokokeks.org
Repositories
Help
Report an Issue
bibweb.git
Code
Commits
Branches
Tags
Suche
Strukturansicht:
0277419
Branches
Tags
master
bibweb.git
assets
frischsaft.js
Neue API 2023
Bernd Wurst
commited
0277419
at 2023-08-05 10:58:24
frischsaft.js
Blame
History
Raw
$(function () { $('#details-frischsaft').hide(); $('#submit').prop('disabled', true); $('#btn-frischsaftja').click( function ( event ) { $('#btn-frischsaftja').removeClass('btn-default'); $('#btn-frischsaftja').addClass('btn-primary'); $('#details-frischsaft').show(); $('#frischsaft').focus(); val = parseInt($('#frischaft').val(), 10); if (val > 0 && val <= 150) { $('#submit').prop('disabled', false); } event.preventDefault(); }); $('#frischsaft').on('input', function () { val = parseInt($(this).val(), 10); if (val > 0 && val <= 150) { $('#submit').prop('disabled', false); } else { $('#submit').prop('disabled', true); } }); });