Two events firing! (return FALSE;?)

C

Colin Hale

I have a problem (amongst others)...
I have the following code which sends 2 emails. I only want to send
one!

<A
ONCLICK="OnActionClick('E-Mail')"
ID="EMailNowAnchor"
NAME="EMailNowAnchor"
HREF="javascript:OnActionClick('E-Mail');"
TABINDEX ="2"
CLASS="Button">
<IMG SRC="images/email.gif" ALT="Click Here" BORDER="0"
ALIGN="ABSMIDDLE">
E-Mail Now</A>

The trouble is that both the HREF and the OnClick are triggered and 2
mails are send instead of just 1.

I've tried replacing my HREF line with

HREF="javascript:OnActionClick('E-Mail');return FALSE"

but this just gives an error 'return statement outside of function'.

I thought you could prevent event propogation/bubbling with return
false?

Any ideas?
 
M

Martin Honnen

Colin said:
I have a problem (amongst others)...
I have the following code which sends 2 emails. I only want to send
one!

<A
ONCLICK="OnActionClick('E-Mail')"
ID="EMailNowAnchor"
NAME="EMailNowAnchor"
HREF="javascript:OnActionClick('E-Mail');"
TABINDEX ="2"
CLASS="Button">
<IMG SRC="images/email.gif" ALT="Click Here" BORDER="0"
ALIGN="ABSMIDDLE">
E-Mail Now</A>

The trouble is that both the HREF and the OnClick are triggered and 2
mails are send instead of just 1.

Well, then use
<a href="#"
onclick="OnActionClick('E-Mail');
return false;"
I've tried replacing my HREF line with

HREF="javascript:OnActionClick('E-Mail');return FALSE"

but this just gives an error 'return statement outside of function'.

I thought you could prevent event propogation/bubbling with return
false?

You can cancel the default action of some events with
return false;
However a href is a link and not an event handler.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,763
Messages
2,569,562
Members
45,038
Latest member
OrderProperKetocapsules

Latest Threads

Top