Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7973403
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T08:05:29+00:00 2026-06-04T08:05:29+00:00

This is working : http://jsfiddle.net/9NDXF/1/ when I write onmousemove, but this is not :

  • 0

This is working : http://jsfiddle.net/9NDXF/1/ when I write onmousemove, but this is not : http://jsfiddle.net/9NDXF/7/ when I write onscroll.

How can I have the mouse position onscroll ?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T08:05:31+00:00Added an answer on June 4, 2026 at 8:05 am

    Because the scroll event has no pageX property. Scrolls suck. Here’s a nice article on mouse scroll events, and a jsFiddle of the demo.

    The only way to “get the mouse position on scroll” is to have recorded it at some earlier time, then access it when needed. I would put a lot of thought into why you think this is a good idea first though: jsFiddle

    var mousePostion = {clientX:0,clientY:0};
    
    function record(e)
    {
        mousePostion = {
            clientX: e.clientX,
            clientY: e.clientY
        };
    }
    function print(e)
    {
       document.getElementById("x").value=mousePostion.clientX;
       document.getElementById("y").value=mousePostion.clientY;
    }
    window.onmousemove=record;
    window.onscroll=print;​
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this code I'm working on, see link: http://jsfiddle.net/PqsAD/3/ The problem is depending
I currently have this working fiddle - http://jsfiddle.net/B8Abd/ I would like to use jquerys
This example working great because here containment is body http://jsfiddle.net/roXon/hMmbK/2/ when i use container
JSfiddle (showing the non-working code) here: http://jsfiddle.net/ts2Rr/ I have three boxes that a user
Here is my code: http://jsfiddle.net/9Vvpj/4/ Please help me figure out why this working fine
I have the following script: http://jsfiddle.net/oshirowanen/8mQ7x/1/ Which works fine, but as soon as I
I have posted a working version here: http://jsfiddle.net/JV2qW/2/ I have a textarea that updates
Could someone explain me please why this didn't working: http://jsfiddle.net/4nzYr/ <ul> <li class=draggable>hello</li> <li
I have based my code on this example http://jsfiddle.net/rniemeyer/WpnTU/ When you select an item
i have this jquery colorpicker from http://www.eyecon.ro/colorpicker/ , everything is working fine but i

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.