Javascript : Form
Get Value of Input
var value = document.getElementById('description').value
Submit with JS
<form>
<input type="text" id="description" name="description" value="...">
<button type="button" onclick="this.form.submit();">Butt</button
</form>