473,396 Members | 1,895 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

"return false" gives a blank page with the word "false" ?

Hello Gurus:

I have a validation script (below) that is somehow messed up. If the
Name field is blank, I get the alert message, then the browser window
goes to a blank document with the word "false" on it. What the ?!?!?!

To test, I commented out the 'return false;' code in the second IF
block, so now if there is a value in Name then I get the alert message
for Email and the page stays put.

What the heck is going on here, and am I doing wrong? BTW, the
"submit" button is a graphic.
<********** START CODE **********>
<script language="JavaScript" type="text/javascript">
<!--
function validate() {
var x = "0";

if (document.subinfo.Name.value == "") {
alert("You must enter your First Name.");
document.subinfo.Name.focus();
x.value = "1";
return(false); }

if (document.subinfo.Email.value == "" ||
document.subinfo.Email.value.indexOf("@") == -1 ||
document.subinfo.Email.value.indexOf(".") == -1) {
alert("Invalid email address. Please re-enter it.");
document.subinfo.Email.focus();
// return false; }
x.value = "1"; }

if (x.value == "0") {
launchwin('thanks.html','confirmation','height=200 ,width=280');
document.subinfo.submit();
location.href = "default.html"; }
}
-->
</script>

<form action="mailto:my*****@mycompany.com" id="subinfo" method="post"
name="subinfo" enctype="text/plain">
<input name="Name" size="24" /><br /><br />
<input name="Company" size="24" /><br /><br />
<input name="Email" size="24" /><br /><br />
<textarea name="Comments" cols="38" rows="5"></textarea><br /><br />
<a href="javascript:validate()">
<img src="gfx/send.gif" name="send" width="42" height="18"
alt="Send Form" />
</a>&nbsp;&nbsp;
<a href="javascript:document.inquiries.reset()">
<img src="gfx/clear.gif" name="clear" width="42" height="18"
alt="Clear Form" />
</a>
</form>

<********** END CODE **********>

Thanks,
Kurt

Feb 14 '06 #1
13 3975
wrote on 15 feb 2006 in comp.lang.javascript:
Hello Gurus:

I have a validation script (below) that is somehow messed up. If the
Name field is blank, I get the alert message, then the browser window
goes to a blank document with the word "false" on it. What the ?!?!?!

To test, I commented out the 'return false;' code in the second IF
block, so now if there is a value in Name then I get the alert message
for Email and the page stays put.

What the heck is going on here, and am I doing wrong? BTW, the
"submit" button is a graphic.
<********** START CODE **********>
<script language="JavaScript" type="text/javascript">
do not use language="JavaScript"
<!--
do not use <!--
function validate() {
var x = "0";

if (document.subinfo.Name.value == "") {
alert("You must enter your First Name.");
document.subinfo.Name.focus();
x.value = "1";
return(false); }
should be:

return false; }

but then the x.value = "1"; would not be usefull,
so delete the return false here


if (document.subinfo.Email.value == "" ||
document.subinfo.Email.value.indexOf("@") == -1 ||
document.subinfo.Email.value.indexOf(".") == -1) {
alert("Invalid email address. Please re-enter it.");
document.subinfo.Email.focus();
// return false; }
well done //
x.value = "1"; }

if (x.value == "0") {
launchwin('thanks.html','confirmation','height=200 ,width=280');
what is launchwin() ???????????
document.subinfo.submit();
location.href = "default.html"; } }
-->
</script>

<form action="mailto:my*****@mycompany.com" id="subinfo" method="post"
name="subinfo" enctype="text/plain">
<input name="Name" size="24" /><br /><br />
do not use <br /> but <br>
<input name="Company" size="24" /><br /><br />
<input name="Email" size="24" /><br /><br />
<textarea name="Comments" cols="38" rows="5"></textarea><br /><br />
<a href="javascript:validate()">
<img src="gfx/send.gif" name="send" width="42" height="18"
alt="Send Form" />
</a>&nbsp;&nbsp;
href="javascript: is a bad idea, better do:

<form onsubmit='validate()' ...

and

<input src="gfx/send.gif" type='image' alt="Send Form">

<a href="javascript:document.inquiries.reset()">
<img src="gfx/clear.gif" name="clear" width="42" height="18"
alt="Clear Form" />
</a>
same here:

<img onclick='document.inquiries.reset()' src="gfx/clear.gif"
style='cursor:pointer;'>
</form>

<********** END CODE **********>

Thanks,
Kurt


--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Feb 15 '06 #2
Hello

1. Better make use of ONSUBMIT event

2. If you are just to fix what you wrote, simply add: void(0) after your
validate function call, just like in:

<script>
function fnc1()
{
if (/*validation ok*/)
{
// submit the form
FORM_VAR.submit();
return true;
}
return false;
}
</script>
</head>

<body>
<a href="javascript: fnc1();void(0);">adsasd</a>
</body>
</html>

HTH
Elias

<ku***@ev1.net> wrote in message
news:11**********************@z14g2000cwz.googlegr oups.com...
Hello Gurus:

I have a validation script (below) that is somehow messed up. If the
Name field is blank, I get the alert message, then the browser window
goes to a blank document with the word "false" on it. What the ?!?!?!

To test, I commented out the 'return false;' code in the second IF
block, so now if there is a value in Name then I get the alert message
for Email and the page stays put.

What the heck is going on here, and am I doing wrong? BTW, the
"submit" button is a graphic.
<********** START CODE **********>
<script language="JavaScript" type="text/javascript">
<!--
function validate() {
var x = "0";

if (document.subinfo.Name.value == "") {
alert("You must enter your First Name.");
document.subinfo.Name.focus();
x.value = "1";
return(false); }

if (document.subinfo.Email.value == "" ||
document.subinfo.Email.value.indexOf("@") == -1 ||
document.subinfo.Email.value.indexOf(".") == -1) {
alert("Invalid email address. Please re-enter it.");
document.subinfo.Email.focus();
// return false; }
x.value = "1"; }

if (x.value == "0") {
launchwin('thanks.html','confirmation','height=200 ,width=280');
document.subinfo.submit();
location.href = "default.html"; }
}
-->
</script>

<form action="mailto:my*****@mycompany.com" id="subinfo" method="post"
name="subinfo" enctype="text/plain">
<input name="Name" size="24" /><br /><br />
<input name="Company" size="24" /><br /><br />
<input name="Email" size="24" /><br /><br />
<textarea name="Comments" cols="38" rows="5"></textarea><br /><br />
<a href="javascript:validate()">
<img src="gfx/send.gif" name="send" width="42" height="18"
alt="Send Form" />
</a>&nbsp;&nbsp;
<a href="javascript:document.inquiries.reset()">
<img src="gfx/clear.gif" name="clear" width="42" height="18"
alt="Clear Form" />
</a>
</form>

<********** END CODE **********>

Thanks,
Kurt

Feb 15 '06 #3
Evertjan. wrote:
<form action="mailto:my*****@mycompany.com" id="subinfo" method="post"
name="subinfo" enctype="text/plain">
<input name="Name" size="24" /><br /><br />

do not use <br /> but <br>

He might be using XHTML.

--
Ian Collins.
Feb 15 '06 #4
Ian Collins said the following on 2/14/2006 7:57 PM:
Evertjan. wrote:
<form action="mailto:my*****@mycompany.com" id="subinfo" method="post"
name="subinfo" enctype="text/plain">
<input name="Name" size="24" /><br /><br />

do not use <br /> but <br>

He might be using XHTML.


Giving XHTML to IE is a recipe for disaster.

--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq & newsgroup weekly
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Feb 15 '06 #5
Randy Webb wrote:
Ian Collins said the following on 2/14/2006 7:57 PM:
Evertjan. wrote:
<form action="mailto:my*****@mycompany.com" id="subinfo" method="post"
name="subinfo" enctype="text/plain">
<input name="Name" size="24" /><br /><br />

do not use <br /> but <br>

He might be using XHTML.


Giving XHTML to IE is a recipe for disaster.

There's plenty out there and <br /> is the correct compatibility option.

--
Ian Collins.
Feb 15 '06 #6
Thank you all for your help. I removed the <a> tags surrounding the
<img> buttons in the form, and put the "href" code into an "onclick"
event within the <img> tag (thank you Evertjan!) Also removed the "x"
variable lines since they were redundant.

I have a question about Evertjan's response:
<script language="JavaScript" type="text/javascript">

do not use language="JavaScript"

<!--

do not use <!--


Why should I not use language="JavaScript" or <!-- ??
Many thanks again!
Kurt

PS: I am using XHTML which requires self-closing empty tags (<br />).
I tested the page in various browsers (IE6, FF1.5, N6, N8, Opera8.51),
and only Netscape 6 showed a discrepancy by adding additional space
underneath various images (assumed).

Feb 15 '06 #7
Kurt wrote:
Thank you all for your help. I removed the <a> tags surrounding the
<img> buttons in the form, and put the "href" code into an "onclick"
event within the <img> tag (thank you Evertjan!) Also removed the "x"
variable lines since they were redundant.

I have a question about Evertjan's response:
<script language="JavaScript" type="text/javascript">


do not use language="JavaScript"


<!--


do not use <!--

Why should I not use language="JavaScript" or <!-- ??

language="JavaScript" isn't a valid script attribute in HTML 4 or XHTML,
try a validator on your page.

--
Ian Collins.
Feb 15 '06 #8
Ian Collins wrote on 16 feb 2006 in comp.lang.javascript:
Kurt wrote:
do not use language="JavaScript"

<!--
do not use <!--

Why should I not use language="JavaScript" or <!-- ??

language="JavaScript" isn't a valid script attribute in HTML 4 or XHTML,
try a validator on your page.


Indeed.

While it entirely possible to insert:

// this line serves no intended purpose

every other line in a js, it would only cloud the appearance of the js,
and do not good whatsoever. The same goes for the above two.

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Feb 16 '06 #9
According to validator.w3.org, the web page (and the entire site)
passes validation for Doctype XHTML 1.0 Transitional.

I was about to argue, since it's found just about EVERYWHERE, that the
language attribute is needed, but thanks to you I found out that it is
indeed deprecated. I will stop using it in the future. However, W3C
still says to comment out code for non-script-aware browsers (see
http://www.w3.org/TR/html401/interac...dx-user_agent).

Many thanks for the lessons learned.

Kurt

Feb 16 '06 #10
Kurt wrote on 16 feb 2006 in comp.lang.javascript:
According to validator.w3.org, the web page (and the entire site)
passes validation for Doctype XHTML 1.0 Transitional.

I was about to argue, since it's found just about EVERYWHERE, that the

[...]

Please quote what you are replying to.
This is usenet, not email.

If you want to post a followup via groups.google.com, don't use the
"Reply" link at the bottom of the article. Click on "show options" at the
top of the article, then click on the "Reply" at the bottom of the article
headers. <http://www.safalra.com/special/googlegroupsreply/>

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Feb 16 '06 #11
Ian Collins wrote:
Randy Webb wrote:
Ian Collins said the following on 2/14/2006 7:57 PM:
Evertjan. wrote:
> <form action="mailto:my*****@mycompany.com" id="subinfo" method="post"
> name="subinfo" enctype="text/plain">
> <input name="Name" size="24" /><br /><br />
do not use <br /> but <br>
He might be using XHTML. Giving XHTML to IE is a recipe for disaster.


There's plenty out there


Two wrongs make no right.
and <br /> is the correct compatibility option.


`<br />' is equivalent to `<br>&gt;' in HTML. The correct "compatibility
option" is `<br></br>'; if you read anything different in the non-normative
XHTML 1.0 Appendix C, it is _worng_. The only problem is that there may
be borken UAs out there that cannot parse this correct markup correctly.
Therefore, XHTML should _never_ be served as text/html (and IE does not
support the proper media type application/xhtml+xml):

<URL:http://hixie.ch/advocacy/xhtml>
PointedEars
Feb 16 '06 #12
Ian Collins wrote:
Kurt wrote:
Why should I not use language="JavaScript" or <!-- ??

language="JavaScript" isn't a valid script attribute in HTML 4 or XHTML,
[...]


It is Valid in the Transitional subsets of HTML 4.01 and XHTML 1.0.
It is deprecated and unnecessary, though.
PointedEars
Feb 16 '06 #13
Kurt wrote:
I have a question about Evertjan's response:
> <script language="JavaScript" type="text/javascript"> do not use language="JavaScript"
> <!--

do not use <!--


Why should I not use language="JavaScript" or <!-- ??


Enough said about the `language' attribute.

About trying to comment out scripts this way:

In HTML, it is error-prone. The `script' element's content is CDATA and
is passed as-is to the script engine. In ECMAScript implementations, `<',
`!', and `--' are operators, and you provide no valid operand: syntax
error. Furthermore, there is no standards compliant UA out there that
requires it; HTML versions prior to 3.2, which did not define the `script'
element yet, have been obsoleted by RFC2854 in 2000 CE (six years ago!).

In XHTML, it is nonsense. There has been no XHTML version that did not
declare the `script' element, so there is no need to hide anything.
Furthermore, in XHTML the `script' element's content is PCDATA, and is
parsed by the XML parser before it is passed to the script engine.
However, in XML applications like XHTML `<!-- ... -->' are _comments_
and an XML parser is allowed to remove all comments before building the
parse tree. You could and will end up with an empty `script' element:
<script/>

See previous discussions on this, it has been discussed _ad nauseam_ before.
PS: I am using XHTML [...]


Do not do that, unless you have to.
PointedEars
Feb 16 '06 #14

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: Varun | last post by:
Hi There, I have a form("myRequest.asp") and the values from it are retrieved into the page ("output_Print.asp") on which I have two buttons('Save As Complete' and 'Save As Incomplete'). When the...
1
by: ItsMillerTime4u | last post by:
I'm trying to change the <body> 's event oncontextmenu attributes, but am having no luck at it. I know I can do <body oncontextmenu="contextMenu(); return false;"> but the thing is that I set's...
11
by: me | last post by:
I have got all my pages to comply with the W3C validator, except this one line as below. I need to keep the line (or the functionalilty) but it would be nice to implement it in a way that gives...
4
by: Bradley Plett | last post by:
I have what should be a trivial problem. I am using XMLSerializer to serialize an object. It serializes boolean values as "True" and "False". I then want to use an XSLT on this XML, and I want...
40
by: Mark P | last post by:
I'm implementing an algorithm and the computational flow is a somewhat deep. That is, fcn A makes many calls to fcn B which makes many calls to fcn C, and so on. The return value of the outermost...
0
by: Dan D. | last post by:
We are running an IIS Server on W2K3 Server. We have 20 or 30 ASP.NET 1.1 applications. Recently I have converted an existing 1.1 application to use the 2.0 framework. After testing and a little...
5
by: Ben | last post by:
Hi; I use ain asp.net the CreateUserWizard control for new users. When it's done, i want to redirect them to another page (modifyprofile.aspx). This works with the code below. My question is:...
5
by: dangt85 | last post by:
Hello, I have the following page: ... <style type="text/css"> body { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; }
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.