473,511 Members | 15,178 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

arguments for onmouseover

I want to set an onmousover function with arguments:

<a id="test" href="test.htm">testje</a>

anchor = document.getElementById("test");
anchor.onmouseover = function(){ anchorMouseover(this,event) };

function anchorMouseover(anchor,event)
{ ...
}

In this code "this" will provide the anchor, but I can't find a way to get
the event. Can anyone give me some suggestions how to do get this?

Thanks a lot...

Wim
Jul 23 '05 #1
3 8526
Try

anchor.onmouseover = function(event){ anchorMouseover(this,event) };

Steve

"Wim Roffal" <wi*************@nospamm-planet.nl> wrote in message
news:ci**********@reader08.wxs.nl...
I want to set an onmousover function with arguments:

<a id="test" href="test.htm">testje</a>

anchor = document.getElementById("test");
anchor.onmouseover = function(){ anchorMouseover(this,event) };

function anchorMouseover(anchor,event)
{ ...
}

In this code "this" will provide the anchor, but I can't find a way to get
the event. Can anyone give me some suggestions how to do get this?

Thanks a lot...

Wim

Jul 23 '05 #2


Wim Roffal wrote:
I want to set an onmousover function with arguments:

<a id="test" href="test.htm">testje</a>

anchor = document.getElementById("test");
anchor.onmouseover = function(){ anchorMouseover(this,event) };


anchor.onmouseover = function (evt) {
if (typeof evt == 'undefined') {
evt = window.event;
}
anchorMouseover(this, evt);
}
should deal with both Mozilla and DOM browsers passing the event as an
argument and with IE and compatible using window.event.


--

Martin Honnen
http://JavaScript.FAQTs.com/
Jul 23 '05 #3
Wim Roffal wrote on 21 sep 2004 in comp.lang.javascript:
I want to set an onmousover function with arguments:

<a id="test" href="test.htm">testje</a>

anchor = document.getElementById("test");
anchor.onmouseover = function(){ anchorMouseover(this,event) };

function anchorMouseover(anchor,event)
{ ...
}

In this code "this" will provide the anchor, but I can't find a way to
get the event. Can anyone give me some suggestions how to do get this?


Why do you want to specify the event?

You already know [and the code knows] the event is onmouseover.

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress,
but let us keep the discussions in the newsgroup)

Jul 23 '05 #4

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

Similar topics

2
1441
by: George Hester | last post by:
In my neck of the woods functions usually have arguments. For example f(r) = 3 + r is a nice function. f(5) = 8, f(-3) = 0. In JavaScript we could write it like this: function f(r){ return (r...
7
2265
by: Richard | last post by:
I know I can have like <a href="#" onclick="dothis" onmouseover="dothat"> But how do you properly code two mouseover's in one statement? <a href="#" onmousever="dothis" onmouseover="dothat"> As...
13
1573
by: Martin Altschwager | last post by:
Hi, I desperately need some help with what I assume to be a minor problem that I just can't solve. I'm writing a page where on mouseover a link, an image needs to be displayed and some text,...
7
3318
by: windandwaves | last post by:
Hi Gurus I am trying to make this rather complicated maps with an a huge number of mouseovers and the like. I want to set up a function that OnMouseDown swaps the OnMouseOver and OnMouseOut for...
3
3931
by: drjackk | last post by:
Hello, I'm trying to change the onmouseover event dynamically. This sets-up the initial onmouseover event: <a href="home.html"> <img border="0" id="img22" src="images/home1.jpg"...
2
2717
by: MrCode2k | last post by:
Hello, Trying to do: I just want a table that I can scroll and that has fixed headers. Problem: I got it to work but when I added the onmouseover event it didn't work anymore....
7
2781
by: MrCode2k | last post by:
Hello, Trying to do: I just want a table that I can scroll and that has fixed headers. Problem: I got it to work but when I added the onmouseover event it didn't work anymore....
1
18835
by: den2005 | last post by:
Hi everybody, I am confused and still looking why this codes is not working. Can anyone notice or know why this code is not working? Thanks in advance. Code working: <form id="form1"...
3
1996
by: Rupe | last post by:
I wish to add an event to an element, but I wish to add arguments to the calling method, eg like so: element.attachEvent('onclick',startDragDrop('arg1',arg2')) I understand this is not...
0
7237
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
1
7074
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
7506
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...
0
5659
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
4734
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3219
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
1572
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
780
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
445
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

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.