Skip to content

Instantly share code, notes, and snippets.

View abztrakte's full-sized avatar

Niko abztrakte

View GitHub Profile
@eivko
eivko / volume-calc-form.html
Last active December 14, 2017 11:35
Калькулятор объёма на jQuery
<form>
<input type="number" min="0" name="a" placeholder="a" />
<input type="number" min="0" name="b" placeholder="b" />
<input type="number" min="0" name="c" placeholder="c" />
<input type="number" min="0" name="qt" placeholder="Количество коробок" />
<div class="calc-result"></div>
<input type="button" name="send" value="Рассчитать" />
</form>