Computer Science, asked by navdeepanand240, 7 months ago

Which website has empty JavaScript and empty HTML? I want to test my coding.

Answers

Answered by prekshitchauhan22
1

Answer:

26-Feb-2020 · Here is the complete web document. Flowchart: Flowchart: JavaScript - checking for non empty field. HTML Code

Answered by roshansharma17
2

Answer:

A zero-length string or a NULL value.

  1. Javascript function to check whether a field is empty or not // If the length of the element's string is 0 then display helper message function required(inputtx) { if (inputtx.value.length == 0) { alert("message"); return false; } return true; } ...
  2. Flowchart:
  3. HTML Code <!

hope it's help.

plz mark me as a brainliest

Similar questions