Code troubleshooting questions are a good fit for Stack Overflow, within reason. “Within reason” means that:
- The code must not be too long. There's a post length limit, but if you come anywhere close to it, your question has far too much code. You (the asker) must make the effort of shrinking your code to a small example that exhibits the problem. This effort will make you understand the problem better (and sometimes will even let you solve it by yourself), and it is necessary if you expect people to answer.
- The posted code must be complete. You'll get far better answers if people can try the code on their own machine and look at their compiler's warning messages or spend a couple of minutes with a debugger (but don't expect that they'll always do that!). Try to minimize dependencies (e.g. don't include libraries that aren't relevant to the problem).
- You must post an explanation of the desired behavior of the program, and the behavior you observe, and it must be clear how the behaviors differ. Posting the code with no explanation may get your question automatically rejected, and even if you pass through the filter, a question that does not have a clear explanation of both the desired behavior and the problematic actual behavior is likely to be closed as “not a real question”.
In moderate quantities, “why doesn't this code work” can be a fun puzzle. In large quantities, “why doesn't this code work” is debugging hell.
But not all questions are about code troubleshooting. At the other end of the spectrum, there are times where you don't even know where to start. You have a high-level description of your data, now you're looking for a suitable data structure. You know what you want to do with your data, now you need an algorithm. You're entering a new subfield of programming and you need to learn the techniques that are specific to this subfield. You're confronted with a new, complex piece of hardware or software and you're looking for a good way to become familiar with it. All these questions are about programming, and (provided they meet the general Stack Exchange guidelines, such as asking “practical, answerable questions”, avoiding extended discussion and so on) they are perfectly suitable for Stack Overflow.
The question that sparked this is clearly a beginner's question. This doesn't make it any less legitimate. Stack Overflow isn't only for those programmers who've already seen it all and done it all; the Stack Overflow FAQ has nothing to say about the level of expertise required to participate on the site (unlike some other Stack Exchange site, which are not the topic at hand here).
Just because a question is basic doesn't mean it's simple. There have been two main benchmarks proposed to define questions that are too simple: questions whose answer is easily found by a web search (Google questions), or questions whose answer is easily found in a common reference (Wikipedia questions). (See the discussions regarding a general reference close reason.) This question is not too simple by either definition. It's about input validation — but the asker didn't know the word, which made it difficult to search for good references. Even with the word, the now obvious Wikipedia article is not much help: it's very abstract, there's nothing in here that helps you validate form data in Javascript.
Sure, if you're a seasoned web programmer, this is elementary to you. Well, it's not elementary to everyone. Imagine you've just hired a junior developer, or perhaps an intern. You will have to guide him through many things that seem easy to you. This question is one of those things. And it's not so easy to write a good answer, is it? Not everyone is a good teacher. Yet teaching programming is part of the job of a programmer, and very much has its place on a questions and answers site about programming.
TL,DR:
- This question is perfectly on-topic.
- This kind of beginner questions is welcome here. There is no justification to close them. And I should add: comments to the contrary tend to come out as rude or non-constructive. Flag away (or in your case, Robert, delete away).
- This question is not “very low quality”. The English was sub-par but comprehensible; that's a reason to edit, not to delete (which is what “very low quality” is supposed to entail).
- Compelling people to show code doesn't strictly restrict the site to a “coding support site”, but it would be an arbitrary, harmful restriction on a site about programming. (If you want every question to have code, try Code Review.)