Starting Javascript
Posted
by user288245
on Stack Overflow
See other posts from Stack Overflow
or by user288245
Published on 2010-03-09T00:47:39Z
Indexed on
2010/03/09
0:51 UTC
Read the original article
Hit count: 263
Hi guys, a couple of questions (never done javascript before). Below is part of the what happens on submit, what is something, the action, the php script its sent to?
Also is there any software you guys reccomend for checking you're javascript, like the equivalent of an ide? im using notepad++.
Is the rest the right sort of idea? I'm using several else ifs for each method, checking valid == true.
<SCRIPT LANGUAGE="JavaScript">
<form action="something" onsubmit="return ok()">
function ok() {
if (validate_Info() == false)
{
alert('Please enter a name');
return false;
}
else if
else if
© Stack Overflow or respective owner