Below is my code:
- <%@ Page Language="C#" AutoEventWireup="true" CodeFile="MousePosition.aspx.cs" Inherits="MousePosition" %>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head runat="server">
- <title>Mouse Position using JQuery in Asp .Net</title>
- </head>
- <script type="text/javascript" src="http://code.jquery.com/jquery-1.8.2.js"></script>
- <script type="text/javascript">
- $(function() {
- $(document).mousemove(function(e) {
- $('#lblMousePosition').html("X Axis: " + e.pageX + "<br/><br/>" + "Y Axis: " + e.pageY);
- })
- })
- </script>
- </head>
- <body>
- <form id="form1" runat="server">
- <div>
- <label id="lblMousePosition" style="background-color: Red;" />
- </div>
- </form>
- </body>
- </html>

Image 1
Now move your mouse anywhere on screen.

Image 2

Join the conversation! Your thoughts help the community grow.