Javascript

Home Load Console Selectors CSS Form Strings If Else Array Reg Exp Date & Time setTimeout JSON Loops Objects Animation Fat Arrow Class Import IIFE undefined Tabulator.js ES6 Event Listeners AJAX Hide Elements Create Elements Checkbox ejs
O O

Weather Controls

Time Of Day
Rain
Wind Speed
Wind Direction
Clouds

Javascript : Form

2022-07-18

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>