не могу больше часа сидеть за компьютером: болят ягодицы.
ALERT (`a)
The alert (`a) character sends a beep signal to the computer's speaker.
You can use this to warn a user about an impending action.
powershell -c echo `a
powershell -c [console]::beep(1000,500)
var test = document.getElementById("test").value
<input id="elem1" type="text" name="quantity" placeholder="Количество">
<input id="butt" type="button" value="Кнопка"/><br><br>
<div id="str"></div>
butt.onclick = function() {
var val = document.getElementById('elem1').value;
document.getElementById('str').innerHTML="Вы ввели: "+val;
};