-4

My question is if an input element in HTML exists which is independent of form element (not INPUT or TEXTAREA). Are there any?

Greez tomi

Xaver Kapeller
  • 49,491
  • 11
  • 98
  • 86
  • all elements are independent – alessandrio Apr 24 '14 at 14:19
  • You can use elements like INPUT or TEXTAREA outside of form. If you have an inherent despise for them, you can also try DIV with `contebteditable` set to `true` – Yuriy Galanter Apr 24 '14 at 14:21
  • Neither `input` or `textarea` _have_ to be inside a `form` … (if that’s what you’re asking – quite unclear what you actually want to know here). – CBroe Apr 24 '14 at 14:21
  • I think what you intended to ask was already answered here: http://stackoverflow.com/a/3294624/2186023 – DrCopyPaste Apr 24 '14 at 14:30

1 Answers1

0

I think so, only declare the input inside of form, always for declare input type text should be inside of form html, you can read more about this...

https://developer.mozilla.org/en-US/docs/Web/HTML/Element/Input

Enrique YC
  • 86
  • 6