Skip to content

Instantly share code, notes, and snippets.

@lavrovpy
lavrovpy / index.html
Created March 18, 2019 19:46
JS count plus/minus
<div id="input_div">
<input type="text" size="25" value="1" id="count">
<input type="button" value="-" id="moins" onclick="minus()">
<input type="button" value="+" id="plus" onclick="plus()">
</div>
<div id="notice" style="color:red;"></div>