Skip to main content

<input>Form Input Inline Element to accept user input via form UI

Source: developer.mozilla.org/en

aka Input-Form-Element, Input-Element

disable copypaste

<body oncopy="return false" onpaste="return false" oncut="return false"\>DISABLE_COPY_CUT_PASTE_FOR_ENTIRE_DOC</body\>
`onpaste="return false"
oncopy="return false"
oncut="return false" `

to set Attribute to disable user copy/cut/paste action inside form element. apply camelCase for JSX - more compact to write as inline event attribute but may conflict/overwrite other event handlers?

onselectstart="return false"

type="button"

type="checkbox"

type="color"

type="date"

type="datetime-local"

type="email"

type="file"

type="hidden"

type="image"

type="month"

type="number"

type="password"

type="radio"

type="ramge"

type="reset"

type="search"

type="submit"

type="tel"

type="text"

type="time"

type="url"

type="week"

References

  1. onchangeForm Event Signal fire when content changes in <input\> Element