JavaScript Document (8) Events (8) ExtJS (9) Strings (3)
Exchange Links About this site Links to us 

|
General :: Web publishing :: JavaScript :: Events
Questions, answers and code examples dealing with javascript event handlers.
Articles:
This list is sorted by recent document popularity (not total page views).
New documents will first appear at the bottom.
Featured Article
Connect a javascript function to a clickable link using onclick or href property?Question: Should I connect a javascript function to a clickable link using the onclick or the href property?
Answer: Indeed there are these two possiblities as shown in the box below.
The first solution has the disadvantage that if have say for example an animated GIF image in your page and the user clicks the javascript: protocol link, then the animation will quit running and you have to refresh the page to start it again.
The problem with the second solution is that your browser will jump to the top of the page (href=#).
If onclick returns false, the browser never even looks at the href attribute, and so it is not followed. Thus you should add ; return false; to the onclick event handler.
The third example shows how it this looks like.
If you also want to be able to handle users who have javascript disabled, then take a look at example four.
If javascript is disabled then the browser ignores the onclick handler and loads the url given in the href property. The assumption here is that your page is generated by myform.php and you have to have some server side code (php, perl..) that parses the argument '?fillform=1' and then does the same functionality on the server side what normally your clientside javascript would have done.
 | |  | | <!-- two possibilities to link an event handler to a clickable link -->
<a href="javascript:fillform()">Pre-Fill</a>
<a href="#" onclick="fillform()">Pre-Fill</a>
<!-- this is the best way to do it: -->
<a href="#" onclick="fillform(); return false;">Pre-Fill</a>
<!-- like #3 but also takes care of people with javascript disabled -->
<a href="myform.php?fillform=1" onclick="fillform(); return false;">Pre-Fill</a>
| |  | |  |
|
| Most recent comments
2009-11-20 15:51:39:
by anonymous
in Dating Scams
on Dating scammer Esther Ansomaa from Accra, Ghana:
This one is a scammer... Has been asking me for money from day one.
Malaria, diseases, need a phone, need a webcam, start business to support herself... You name it!
Cynthia (Cyn) Ts ... read more
|
2009-11-20 15:42:53:
by [hidden]
in Male Dating Scammers
on Dating scammer Telvis Emmanuel Garry:
Some of these photos are currently being used by someone on match.com. He showed up in my 'Today's Matches'. I recognized the photos and reported it to Match. The profile name is akf999 and sais he li ... read more
|
2009-11-20 15:27:06:
by ww
in Dating Scams
on Primer for first time visitors (Dating Scams):
@OJAS
And here it is .
|
|
2009-11-20 14:52:51:
by ww
in Dating Scams
on Is this Russian girl scamming me? How to recognize scammers:
And I tried enlarging her eye.
Here it is.
|
2009-11-20 14:43:11:
by jennymathey
in Male Dating Scammers
on Dating scammer Austin Grello:
the email does no match and neither does his last name but i was talking with a man named austin and i have his pics that i will post i dont know if he is the same man but i admit that i sent him 50 ... read more
|
2009-11-20 14:28:25:
by anonymous
in Dating Scams
on Dating scammer sandra mark:
THAT IS BAD.....WHY THOSE NIGERIAN ARE SCAMMING.....
|
2009-11-20 13:45:23:
by agent110
in Dating Scams
on Dating scammer Olga Chernova from Kstovo, Russia:
good night the friends exactly the meme letre which j have recue the premiere time except the prenom which has etait to change and the photograph I am going to re-lay him tres mildly and to cook it on ... read more
|
2009-11-20 13:44:13:
by anonymous
in Dating Scams
on Dating scammer Glory Gukama:
I RECEIVED THE ABOVE E MAIL FROM ONE HAPINESS GUKAMA, I KNEW IMMEDIATELY IT WAS A SCAM, BUT I DECIDE TO PLAY ALONG, NOW THEY HAVE ASK FOR MONEY TO BE SENT TO A LAWYER IN SENEGAL, I EVEN TOLD THEM I AM ... read more
|
2009-11-20 13:39:59:
by ww
in Dating Scams
on Dating scammer Olga:
same girl ?
|
2009-11-20 13:39:28:
by anonymous
in Dating Scams
on Dating scammer Christie John:
Christie John
|
|