Search the archives!
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Javascript] Onmousemove event
- From: peter at brunone.com (Peter Brunone)
- Subject: [Javascript] Onmousemove event
- Date: Tue Jul 27 13:23:30 2004
Shouldn't your else statement have braces as well? That is, this
else
document.onmousemove = mouse_move;
should be this:
else {
document.onmousemove = mouse_move;
}
...or is that not necessary for one-liners?
Original Message:
>From: "Iztok Polanic" <iztok.polanic@xxxxxxxx>
>Hi!
>
>Me again. I hope this time without quarrell. :) Below is a script which
>works find in IE but not so good in Firefox.
>
>var IE = document.all ? true : false;
>
>if (!IE) {
> window.captureEvents(Event.MOUSEMOVE);
> window.onmousemove = mouse_move;
>} else
> document.onmousemove = mouse_move;
>
>function mouse_move(e) {
> if (IE) {
> tempX = event.clientX;
> tempY = event.clientY;
> } else {
> tempX = e.pageX;
> tempY = e.pageY;
> }
>
> // lay
> leftPos = document.getElementById('lay').offsetLeft;
> topPos = document.getElementById('lay').offsetTop;
> sirinaPos = document.getElementById('myrange').offsetWidth;
> visinaPos = document.getElementById('myrange').offsetHeight;
>
> if(tempX >= leftPos && tempX <= (leftPos + sirinaPos) && tempY >=
>topPos && tempY <= (topPos + visinaPos))
> document.getElementById('lay').style.display = 'none';
> else
> document.getElementById('lay').style.display = '';
>}
>
>In Firefox the picture is displaying and dissapiring. Why? How can this be
>fixed?
>
>Bye,
>
>Iztok
- Follow-Ups:
- [Javascript] Onmousemove event
- From: Flavio Gomes
- [Javascript] Onmousemove event
- From: Iztok Polanic
- [Javascript] Onmousemove event
- Prev by Date: [Javascript] Onmousemove event
- Next by Date: [Javascript] Onmousemove event
- Previous by thread: [Javascript] Onmousemove event
- Next by thread: [Javascript] Onmousemove event
- Index(es):