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
Catch mouse move events in Internet Explorer and NetscapeQuestion:
How can I catch mouse move events both in Internet Explorer and Netscape? I need to keep track of the current position (in pixel coordinates) of the mouse on the document.
Answer:
You need to see if IE or Netscape is running by checking for document.all or document.layers. Note that the code to access the event coordinates for Netscape 6 is different than for Netscae 4 and 5. Even the event handler registration is different for each browser.
The example works for Netscape 4,5,6 and IE 4,5,6.
 | |  | | <SCRIPT LANGUAGE="JavaScript1.2">
function mouseMoveHandler (evt) {
var x = document.all ? event.clientX : document.layers ? evt.x : evt.clientX;
var y = document.all ? event.clientY : document.layers ? evt.y : evt.clientY;
window.status = x + ':' + y;
}
if (document.layers)
document.captureEvents(Event.MOUSEMOVE);
if (document.layers || document.all)
document.onmousemove = mouseMoveHandler;
if (document.addEventListener)
document.addEventListener('mousemove', mouseMoveHandler, true);
</SCRIPT>
| |  | |  |
|
| Most recent comments
2010-03-18 03:44:50:
by anonymous
in Dating Scams
on Dating scammer Josphine L:
I have been talking to this woman that goes by the name of Josephine Cudjoe from Accra- Ghana. She just ask me for $200.00 for a cell phone and that she loves me. What is even funnier that she tells m ... read more
|
2010-03-18 03:02:08:
by anonymous
in Dating Scams
on Dating scammer Roselin Jemba jembarose@yahoo.com from Monrovia, Senegal:
These whores never change their story
her name is Jessica Mabar and her e-mail address is jessicamaba1@yahoo.com
hello dear
I am more than happy in your reply to my mail.How ... read more
|
2010-03-18 01:21:43:
by anonymous
in Dating Scams
on Is this Russian girl scamming me? How to recognize scammers:
Starting to have some doubts about my girl, she was heading toward being real, but now shes not replying me. I could be paranoid in thinking that, and who knows maybe she is just busy with work. Ill ... read more
|
2010-03-18 01:14:04:
by Scambay Terr
in about DelphiFAQ
on Accounts on this web site:
@DOC,OJAS
Just wanted to see where I am.
|
2010-03-18 00:13:59:
by anonymous
in Male Dating Scammers
on Dating scammer paul moris:
I met paul about 3 months ago, he says all the right things that a woman wants to hear, but alot of it doesnt add up. i was ok till he started needing money to get back home in elpaso from nigeria. H ... read more
|
2010-03-17 23:09:11:
by DOC
in Dating Scams
on Dating scammer Olga:
Tanya (tanya.musician@gmail.com) = Real ID: Інна Воронова (InVoronova)
ІннÐна Воронова: Ukrainian music artist? Also is married and has a son I think.
|
2010-03-17 22:46:12:
by pirate
in Dating Scams
on Dating scammer Nancy Milman from Accra, Ghana:
2010-03-17, 15:00:34
anonymous from United States
Hera is another one anybody knows about she is a scammer too thats all I know Her name is Jessica
@anonymous.
If sh ... read more
|
|
2010-03-17 22:07:54:
by anonymous
in Dating Scams
on Dating scammer Hannah Amissah:
if your information real then i a love you what you are saying that is the dream of every one.
will inform me.
Thank you
ezat.ea@g. com
afan_studentea@ya@yahoo.com
|
2010-03-17 20:17:13:
by anonymous
in Male Dating Scammers
on Dating scammer Marcus Gary:
thank you....thanks for the info!
|
2010-03-17 20:03:10:
by [hidden]
in Other Scams
on Dating scammer Rose Kimberly in Africa:
i just got a instant message from Vivian Michael aka Rose Kimberly. She is still stuck in that motel in Nigeria, Africa. I guess she has not found the right guy yet to spend the rest of her life with ... read more
|
|