473,668 Members | 2,265 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.getEle mentById("test" );
anchor.onmouseo ver = 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 8537
Try

anchor.onmouseo ver = 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.getEle mentById("test" );
anchor.onmouseo ver = 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.getEle mentById("test" );
anchor.onmouseo ver = function(){ anchorMouseover (this,event) };


anchor.onmouseo ver = 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.javas cript:
I want to set an onmousover function with arguments:

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

anchor = document.getEle mentById("test" );
anchor.onmouseo ver = 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
1451
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 + 3); } easy enough. Now say we have a <INPUT element that has the onmouseover event defined like this:
7
2272
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 an example of use: Column A holds menu items. When a mouse over is performed, two actions take place instead of one. Action one sends an image to a division in column B, action two sends text to another division in column B.
13
1593
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, which is defined inside an array, sould appear inside a table cell (whose id is "tdDesc"). That's basically what's in the HTML-file:
7
3336
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 the same element. E.g. <A HREF="#" OnMouseOver="A(); return true" OnMouseOut"B(); return true;"
3
3941
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" height="15" width="85" alt="Home" onmouseover="FP_swapImg(1,0,/*id*/'img22',/*url*/'images/home2.jpg')"</a>
2
2723
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. Replicate-Problem: Scrolldown the textbox and put the mouse over a row.
7
2792
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. Replicate-Problem: Scrolldown the textbox and put the mouse over a row.
1
18847
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" runat="server"> <div> &nbsp;</div> <div>
3
2005
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 possible. For a non windows browser I have been successful with the following code: newA.data = "argumentText"
0
8459
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8374
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8890
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8791
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
8653
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7398
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5677
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 then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
2
2018
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1783
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 can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.