[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

7.6

Javascript events(concatinate)

Asked by Batalf in JavaScript

Tags: javascript, concatinate

I have a small problem with Javascript events which I hope some of you can help me with.

Let's say I have two Javascript classes. Both of these classes adds an onmousemove event to the <HTML> tag(document.documentElement). What I need to know is how to make sure that when the second event is added it doesn't delete the first one. I need some way to "concatinate" events.

This code illustrates what I mean:


Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Test of js events</title>
<style type="text/css">
#event1,#event2{
width:300px;
height:300px;
border:1px solid #000;
background-color:#EEE;
margin-right:10px;
float:left;
}
</style>
<script type="text/javascript">

function Class1()
{

}
Class1.prototype = {

addEvent : function()
{
if(document.documentElement.onmousemove){ // Event allready exists
// What can I put in here. I don't want to delete the old event.
}else{
document.documentElement.onmousemove = this.me;
}
}
,
me : function(e)
{
if(document.all)e = event;
document.getElementById('event1').innerHTML = 'From object of Class1: x: ' + e.clientX + ', y: ' + e.clientY;
}

}

function Class2()
{

}
Class2.prototype = {

addEvent : function()
{
if(document.documentElement.onmousemove){ // Event allready exists
// What can I put in here. I don't want to delete the old event.
}else{
document.documentElement.onmousemove = this.me;
}
}
,
me : function(e)
{
if(document.all)e = event;
document.getElementById('event2').innerHTML = 'From object of Class2: x: ' + e.clientX + ', y: ' + e.clientY;
}

}


</script>
</head>
<body>
<div id="event1"></div>
<div id="event2"></div>
<script type="text/javascript">
var obj1 = new Class1;
obj1.addEvent();

var obj2= new Class2;
obj2.addEvent();
</script>
</body>
</html>

As you can see, I have two classes, and at the bottom I create one object of each class. If it had worked as I hoped, the x and y position of the mouse should have been written into both of the gray boxes.
[+][-]08/28/06 02:37 AM, ID: 17402579Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08/28/06 02:51 AM, ID: 17402635Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08/28/06 03:04 AM, ID: 17402681Accepted Solution

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

About this solution

Zone: JavaScript
Tags: javascript, concatinate
Sign Up Now!
Solution Provided By: ameba
Participating Experts: 2
Solution Grade: A
 
[+][-]08/28/06 03:26 AM, ID: 17402752Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20091021-EE-VQP-81