Tagged Questions
2
votes
1answer
25 views
Why does document.onmousemove happen even when the mouse doesn't move?
I'm new to javascript and trying some code that I got from CodeLifter.com for capturing the XY position of the mouse. I've modified the code so that each time the mousemove function is called my ...
0
votes
1answer
13 views
stop scrolling while moving div element javascript
i got problem with scrollbar, when im trying to move div element to the bottom of the screen (using onmousedown,onmousemove,onmouseup functions) scrollbar starts scrolling down ,it looks like ...
-1
votes
1answer
45 views
Autoclick where is mouse position with javascript
I have search this kind of post and i didnt find anything.
So my question is :
Is it possible after a time make an auto click on current position mouse?
Example: If mouse is over link ...
0
votes
0answers
41 views
Trigger element visibility and hover state when button is click-dragged
I'm trying to replicate a function from Photoshop, where you click on a tool button, but drag to the right while in click state, and a menu [to choose variations of the tool] is opened. While still in ...
0
votes
0answers
22 views
onbeforemousemove to get mouse's old position?
I'm working on a drag and drop lib and i would like to add the mouse's position variation to the dragged element's actual position instead of just setting it's position to the current cursor position ...
0
votes
0answers
88 views
JavaScript - dragend and drop events not firing
I want to make whole HTML blocks draggable, not just text or images, so i've come up with this : http://jsfiddle.net/8D7YK/
The drag end event won't fire when i release the mouse button. Neither will ...
0
votes
1answer
46 views
Change page with mouse drag event
I was wondering if it's possible to change a html page on a mouse drag event. I'm trying to allow a user to click and drag a white box to the left to change the page. The link to the project is here:
...
0
votes
0answers
61 views
JS/jQuery how to lock mouse pointer
Making a WebGL first person shooter, so I need pointer to be always inside the game's block.
Is there a way to set the mouse pointer position or lock it in any other way?
With pure JS or jQuery or ...
1
vote
2answers
130 views
Where to place Mouse Enter and Mouse Leave in Javascript
I have the following script and am trying to add mouse enter and leave events on a slideshow such that when the mouse is over the image it won't switch to the next one, and once removed it continues.
...
3
votes
2answers
151 views
capturing move events with IE10 and windows 8
I'm trying to capture signatures using a html5 client on windows 8 touchscreen tablet.
I've tried using http://github.com/thomasjbradley/signature-pad , but rather than the smooth curves it captures ...
0
votes
1answer
176 views
Creating an Expanding DIV/Canvas with Horizontal Scrolling with Wheel JavaScript
Ok - here is what I am trying to do. I was looking online for a cool timeline that I can purchase - allowing zoom in zoom out, posting of events on it, and so on. However, all the examples I found are ...
1
vote
3answers
240 views
How to open PopUp right beside the event Button - how to get Mouse Cursor Position onclick?
if i do have a call on an imagebutton like this:
onclick="window.open('link','width=615,resizable,scrollbars').focus(); return false;
how i can open this just right besides the action Button?
or how ...
0
votes
2answers
358 views
How to disable Left Click of Mouse for a particluar div using javascript?
I want to disable the left click for a particular div. I have tried the following way but its not working for me:
$('[id$=div]').onclick=function(){xajax_addFunction()};
It is document.ready(). it ...
1
vote
2answers
108 views
jQuery - Non-nested / non-descendant sibling navigation shown on hover event
I have 2 navigation areas. The second should appear when an element in the first is hovered over and it should disappear if the mouse does not move over it.
Very basically i have:
HTML
<ul ...
1
vote
2answers
65 views
How can I calculate mouse specific movement with JavaScript
I want to know how can I calculate a mouse specific movement.
I want to have some advices how to determine the mouse is moved from A to B.
For example, like win8. When the mouse is on side of ...
0
votes
1answer
24 views
Mouse coordinates restricted to 1 element and not the page size
Hi, guys i am working on a way to draw with your mouse with Canvas.
This is how far i am:
function drawdraw(){
test = document.getElementById('test');
ctx = test.getContext('2d');
...
1
vote
2answers
193 views
HTML5 - JS: Shoot Bullet From Facing Direction
I'm working on a top down shooter HTML5 game. I'm currently trying to get bullets to fire from my characters facing angle.
My character always faces the mouse position (rotates). So, when I fire a ...
1
vote
1answer
52 views
Javascript for three.js controls
I'm trying to make a little game in three.js.
The controlling javascript code is below:
window.onmouseover = function (ev) {
down = true;
sx = ev.clientX;
sy = ev.clientY;
};
...
0
votes
2answers
91 views
any way to detect ctrl + click in javascript for osx browsers? no jQuery
using vanilla js. Any way to grab the "right-click" (option-click) from OSX?
function clickey(e)
{
if(event.button==2 || /*how you'd do it in Java=)*/ e.getButton() == MouseButton.BUTTON3 )
... ...
-1
votes
1answer
439 views
Mouse position on mouseover event
Is it possible to get the exactly mouse position in a mouseouver event of a image?
If i use a function that update the mouse position on document mouse move event I can have problems with delay and ...
1
vote
1answer
188 views
JavaScript & HTML5 - Rotate Character Towards Mouse
I have an image in the middle on my canvas, and I want to be able rotate it to face where my mouse is on the canvas.
I have the variables to my mouse position, and I have placed my image in a matrix ...
0
votes
0answers
129 views
disable carousel mouse hover displays title
I've got a carousel with ellipse. Img are in autorotating and if you want to display an img on the back to front, I use mouseover click. Carousel shows title when img is bringToFront and when mouse ...
2
votes
2answers
150 views
jQuery - detect if the mouse is still?
I was wondering if there was a way to detect if the mouse is idle for like 3 seconds in jQuery. Is there a plugin that I am unaware of? Because I don't believe there to be a native jQuery method. Any ...
2
votes
2answers
315 views
How to change appearance of “text-selection” cursor on webpages or disable cursor changing while a text is selected in all major browsers?
I want to prevent the mouse cursor from changing when I move it over some text. Is this possible?
If not, I would like to change the appearance of text-selection cursor - is it possible with css / ...
0
votes
2answers
76 views
Using JQuery or Javascript, how can I tie a click function to control the scroll of an element/div?
Using JQuery or Javascript, how can I tie a click function to control the scroll of an element/div? I want to add buttons to control the vertical scroll of a div without changing positioning or ...
2
votes
1answer
269 views
d3 mouse argument with jquery
I am trying to get the mouse coordinates of a div using d3, and I have working code that looks like
var mouse = d3.mouse(document.getElementById('container'));
When I try to use a jquery selector ...
0
votes
4answers
136 views
jquery firing mouse out for ul when navigating between li
I have an html page that has a list
<ul id="mylist">
<li><a href="#">item 1</a></li>
<li><a href="#">item 2</a></li>
</ul>
Then some ...
1
vote
2answers
268 views
Kinetic get specific shape id on click
I am simply trying to set up a click event for each shape and I want to be able to display to me which square it is based off of their id.
var stage = new Kinetic.Stage({
container: 'container',
...
1
vote
1answer
61 views
Can this animation in jquery be done in JS without jquery and still retain simplicity?
I found this "div follows mouse" animation:
JSFiddle that belongs to the answer posted in: How to animate following the mouse in jquery.
var mouseX = 0, mouseY = 0;
...
1
vote
2answers
530 views
jquery set mouse position inside a <div> graphic area
using http://www.flotcharts.org/ to realize a complex scatterplot graphic with zoom/pan functionalities, i would like to set mouse position at specific coordinates (by example: when doing a zoom in, I ...
2
votes
2answers
105 views
Trigger mouse event when pointer is X units away from bottom of browser window
Ok, my question is simple, though I am unsure if the answer will be. I have an element that is fixed to the bottom of the browser window. When it is unneeded I want to hide it(set height to 0px). When ...
1
vote
2answers
193 views
Detecting Mouse Movement Without JQuery
I'm looking for a small piece of javascript that will check for mouse movement and in the event it does execute a function. I'm looking to do this without jquery and preferably compatible with most ...
1
vote
1answer
140 views
Advanced right click functionality - click and hold, show buttons, on release click what is hovered over
How would you do this in javascript/jquery?
I currently have the right-click + hold to show a div, and then it disappears on the release of the right click. However, I would like to click any button ...
0
votes
2answers
128 views
Firefox w/ Mouse dragging
I am trying to make an iPad like interface and everything is great except for firefox (obviously IE does not work right now). The mouse fallback (non touch screens) cannot seem to handle more than ...
1
vote
1answer
100 views
Get row and column number from mouse coordinates
I am using Ace for my in browser text editor.
editor.on("mousemove", function (e)
{
// use clientX clientY to get row and column locations
});
From clientX clientY coordinates i need actual row ...
1
vote
1answer
365 views
[SOLVED]Image rotating on a webpage with Javascript doesn't work
I'm trying to make an image for a website, that rotates with the mouse position, but I can't get it to work, I'm hoping someone could explain to me why.
Here's the script I have:
<body ...
0
votes
1answer
122 views
“Not endless” background scroll with mouse position
I don't know JS too much and I'd like to add this code to my site, however I don't want it to be endless. I want it to stop at certain limits or boundaries (min and max) in the x axis. How can I do ...
3
votes
1answer
183 views
Raphael Hover Bug?
I have written a graphing widget with Raphael JS. Data is taken from a database and graphed in a canvas. The issue appeared when I tried to create a tooltip for the data points. The tooltip fades in, ...
1
vote
0answers
154 views
How to click links and fire mousedown/mouseup events by javascript
I'm working on a bookmarklet to open links from a page but it also needs to fire mousedown/mouseup events ... I made the bookmarklet to click and open links but can't make it to fire mouse events :( ...
1
vote
3answers
104 views
Javascript override user mouse event
I have a bit of javascript that will allow the user to move stuff around using the mouse, so the user can click and drag things around, which is working all fine, but what I am struggling with is ...
1
vote
2answers
153 views
How to create a move handle using jquery
This is more the theoretical type of question.
In my web-application i want to create a button that the user can click and therefore initiate a move-mode during which (until the mouse is released) ...
0
votes
1answer
56 views
deactivating all standard mousevents XTK
I've got a volume and a mousemove event within a mousedown event.
what I want to achieve is to move the mouse while the button is still pressed, change the slice via IndexX++/--
AND
stop the volume ...
0
votes
2answers
120 views
Watching a javascript namespace variable in the Firebug console
This may be simple, may not. I am trying to track the mouse position in JavaScript and I want to watch the current position using Firebug.
My page has:
var mouse_position = {};
mouse_position.x = 0;
...
0
votes
0answers
218 views
scrollLeft easing animation using mouse position [closed]
I'm trying to figure out how to scroll a div using its scrollLeft and control its speed using the mouse's position. However I also wanted to accomplish an acceleration and deceleration only at the ...
0
votes
1answer
51 views
Is there anyway to get increased resolution for mouse movement?
I'm currently using canvas.onmousemove to keep track of the mouse position for a drawing application and the resolution (especially when moving fast) is contributing to some problems. Is there any way ...
0
votes
1answer
189 views
node.js mouse press event in the shell
Is it possible to track mouse click on the shell in node.js.
Something link:
process.on('mousepress', function(data){
});
1
vote
3answers
120 views
Why does my javascript mouse event not fire?
Here's what I thought was simple code:
<html>
<head>
<script>
function Foobar(id) {
self = this;
self.id = id;
...
0
votes
1answer
34 views
Is there a way to force a browser's Window object to re-assess where the mouse is?
I have a content management tool that uses iframes to stack blocks of content on a page. The system will load the contents of each block into the iframe, along with a cover and some buttons for ...
0
votes
1answer
63 views
JS streaming from binary file
So I know that javascript libraries like SoundManager2 are able to "stream" music to a client. With "stream" I am talking about
1) File is stored on a server and fetched by the application from user ...
0
votes
1answer
210 views
get mouse position on jquery.media object
I am trying to get the current mouse position in javascript with this simple sample code:
$(document).mousemove(function(e){
console.log(e.pageX +', '+ e.pageY);
});
This works fine but I want ...


