Opened 13 years ago
Closed 13 years ago
#5928 closed bug (fixed)
Global mousemove ceased to function
Reported by: | Znarkus | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | 1.4.1 |
Component: | event | Version: | 1.4 |
Keywords: | mousemove | Cc: | |
Blocked by: | Blocking: |
Description
The $().mousemove event never fires. The docs for this is not working on three different computers PC/Mac, Firefox/Safari.
Change History (6)
comment:1 Changed 13 years ago by
comment:3 Changed 13 years ago by
Resolution: | → invalid |
---|---|
Status: | new → closed |
Use $(document).mousemove()
per the 1.4 release notes.
comment:4 Changed 13 years ago by
Resolution: | invalid |
---|---|
Status: | closed → reopened |
Documentation is still not working; it's using the old syntax. Confusion!
<script type="text/javascript"> jQuery(document).ready(function(){ $().mousemove(function(e){ $('#status').html(e.pageX +', '+ e.pageY); }); }) </script>
comment:5 Changed 13 years ago by
It took me about 5 minutes to figure out--but what he's saying is that on this page,
http://docs.jquery.com/Tutorials:Mouse_Position
it's still using the old $().movemove. Since that's still on the wiki--I've updated it to $(document).
comment:6 Changed 13 years ago by
Component: | unfiled → event |
---|---|
Resolution: | → fixed |
Status: | reopened → closed |
Thanks Mike - reclosing.
Note: See
TracTickets for help on using
tickets.
Reproduction code: