LANG SELRCT

Apps Script Reference  (Create: Create new Spreadsheet | Create new Apps Script

Sunday, March 11, 2018

formのsubmitをfalseにする


formのonsubmitを無効にしたくて調べた時の備忘録


これで無効にできる
<form onsubmit="return false">



index.html
<!DOCTYPE html>
<html>
<body>
  <form onsubmit="return false">
    <input type="text">
    <button type="submit">button</button>
  </form>
</body>
</html>


Latest post

Extracting data from Google Sheets with regular expressions

Introduction Regular expressions are a powerful tool that can be used to extract data from text.  In Google Sheets, regular expressions ca...