Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
3k views

does mousedown /mouseup in jquery work for the ipad?

I am using the current code: $('body').mousedown(function() { $('div#extras').fadeTo('fast', 1); }); $('body').mouseup(function() { $('div#extras').delay(2000).fadeTo(1500, 0); }); ...
3
votes
2answers
199 views

IE9 Mousemove event not firing during Mousepress

When I left-click and drag the mouse, IE9 doesn't recognize the mousemove event. I need to know where the mouse is located while it is being moved during it's depressed state. Other browsers are ...
3
votes
2answers
160 views

Delphi - moving overlapping TShapes

I've needed own triangle shape so, I inherited my triangle class form TShape and override paint method. Everything works fine, but I need to move this shapes with mouse. I set the method for every ...
3
votes
3answers
695 views

Mousedown event firing twice (WPF)

I am currently trying to capture a mousedown from an image on a simple grid. I have no problems with the event firing, it is just that it fires twice. And because clicking it twice will eventually ...
3
votes
2answers
457 views

simulate to change the background color when click the link

I have the following HTML and the java script below to simulate the background color change when the link block is clicked, but it doesn't seem to work. Any reason why? If I have only the onmousedown ...
2
votes
2answers
75 views

How can I make a right-click behave as a left-click for the purpose of selecting or focusing an object

Event though a right-click (as far as I know) fires a mousedown event, that mousedown seems to be ignored in most cases. I'm currently working on displaying a custom context menu via a right-click, ...
2
votes
1answer
94 views

Detecting the last time the user clicked/moved/typed/anything

I have a Windows vb.net project that does an occasional "auto refresh" based on a 20 minute timer. I want to avoid any type of auto-refresh... if the user has manually had any interaction with the ...
2
votes
2answers
206 views

Flot: how to add “mousedown” event to a plot holder?

I want to add "mousedown" event to the plot holder in JQuery/Flot code, i tried two ways, but neither works, i appreciate anybody give me any hints! 1) placeholder.bind("mousedown",function(e){ ...
2
votes
2answers
346 views

JavaScript: onMouseOver Event Not Working Properly With Other Events

I have a HTML webpage that contains a 15x15 table and I also have a small square div that follows the mouse when you press and hold the left mouse button on the div. I have assigned an onmouseover ...
2
votes
1answer
122 views

Can a PDF Embed onmousedown Javascript Events?

My client has some web pages that have A tag links with onmousedown events on them. My tools are PHP, Linux, and the tools for PDF generation there like DomPDF and PHP PDF. Is there a way to put the ...
2
votes
1answer
300 views

Can I add a bind paste event on mousedown in jQuery?

I want to catch the paste event with right Click and Paste selection on a textarea. What I did is: $(window).bind('paste', function(event) { pasteText(); return false; ...
2
votes
2answers
1k views

mouseover while mousedown

I have a large table with with each cell being 25x25 and a div inside each one. Each div has the class of "node" and a background colour is applied to them all. I'm in the process of writing some ...
2
votes
2answers
523 views

How do I write a mouse down event in JavaScript?

This is very basic I'm sure to JavaScript but I am having a hard time so any help would be appreciated. I want to call a function within a for loop using the mouseDown event occurring within an ...
2
votes
3answers
2k views

Use onmousedown to get the ID of the element you just mousedowned on?

Is this possible? I am attempting to write a function for onmousedown that will return the ID of the element you just clicked for later use in recreating that element in a different div.
1
vote
1answer
39 views

canvas.onmousedown function to add a shape won't work

I have some code, which can be seen below. At the bottom is a block of code to add a shape. For some reason it won't work unless the very first lines of code are different. Up until I added the ...
1
vote
1answer
20 views

Assigning new arrows on Jscrollpane with onmousdown event - buggy in ie7/8

I am assigning new arrows to my jscrollpane with the below code. This works fine in all browswers, but its buggy in ie7/8. An example of the bug can be found on http://jsfiddle.net/WzNM4/6/ . If you ...
1
vote
5answers
186 views

jquery - prevent buildup of mousedown with overlaping elements

lets say I have a div nested withing another div and I have a mousedown event to trigger an alert when any of the divs are clicked on. Naturaly the alert displays twice with a single click as the divs ...
1
vote
1answer
606 views

How to detect mouse click and hold in Android browser?

I am writing a webpage that is intended to be viewed on Android phones and hopefully other mobile devices. I am going with a webpage as opposed to an App because it is more platform independent. I ...
1
vote
1answer
375 views

How to handle both CLICK and MouseDown events in Flex?

I have a scenario where I am listening to both CLICK and MouseDown events for an object. On MouseDown I do a startDrag(). And on Click, I perform something else. But the problem is that, MouseDown ...
1
vote
2answers
139 views

jQuery Adding a css class to a link when clicked

I have the current code: <script type="text/javascript"> $('ul.products-slideshow-thumbs li a').bind("mousedown", function(){ $(this).toggleClass("current"); }); </script> <ul ...
1
vote
2answers
530 views

WPF - Open ContextMenu on left mouse hold down

In Google Chrome I really like the functionality of the left mouse hold down on the Back button to get the full browse history. In my WPF app: for a button with a context menu, how can I open the ...
1
vote
2answers
332 views

disable text selection and add exceptions

if i use this style for the <body> onmousedown='return false;' onselectstart='return false;' is it possible to give the exceptions by using javascript for inputs textareas and selects? and if ...
1
vote
1answer
412 views

User-inputted dynamic div height in chrome

I have found (not written) a piece of code for a resizable div that works beautifully in firefox and IE, but in Chrome it's very difficult to expand--it often just ignores you if you try to stretch ...
1
vote
2answers
1k views

addEventListener('mousedown', …) vs element.onmousedown

Right let’s get this out the way first. Yes, I want to hide the context menu. No, I’m not trying to prevent someone lifting content off my page. Its intended use is input for an in-browser game and it ...
1
vote
1answer
779 views

Downsides of onMousedown vs. onClick?

I've been dealing with a bane-of-my-existence Javascript problem involving tracking when a user clicks on a link (in case you're curious, here it is: ...
1
vote
1answer
167 views

Manually selecting a control's element without knowing its name… (ReportViewer)

i am utilising the reportviewer class in my c# application and have a question that isnt essential to fix but something i would like to figure out. Lets say i launch a new form with a fully docked ...
1
vote
3answers
2k views

Javascript: How to measure the milliseconds between mousedown and mouseup?

Looks like you can't call setInterval() from the onMouseDown event handler. I tried, didn't work. By John Resig's explanation, this makes sense: http://ejohn.org/blog/how-javascript-timers-work/ ...
1
vote
2answers
599 views

jQuery Event Release

I'm relatively new to jQuery, so I apologize if I'm asking a rudimentary question, but I have a problem with event triggering. Right now I'm trying to design a kind of Image Panning tool, where the ...
0
votes
2answers
25 views

Add more css classes in one function

I need to create a function with this: onMouseDown to add that class,onChange that other class and onBlur last class. With ".animate" is more wonderful, but is ok even without. ...
0
votes
1answer
41 views

Handle onTouchDown on mobile browser and onMouseDown on desktop/laptop?

I'm developing a web game application with a, HTML5 canvas that has to react to "click" events (in the general meaning). On a mobile platform (or touch-capable), that means reacting to onTouchDown, ...
0
votes
2answers
58 views

ActionScript 2 Moving an object

I have very little knowledge of ActionScript. I have a movie clip. I want it to move along the x-axis when i press down on a button(button or movie clip) I do not know what code to use as it needs to ...
0
votes
0answers
35 views

How can set mousedown (mousehold) slider effect on Coda-Slider image slider script?

I am using coda-slider image sliding script. I want to change scrolling effect on coda-slider script. Please help me to change to slide the images on mouse-hold (continuous slide on mouse-press , ...
0
votes
1answer
80 views

javascript onmousedown not being called

in Javascript, I want to create a handler for a mouse click. then, i want to be able to "busy-wait" for a few seconds before running the next line of code.* But in the "busy-wait", i want to still be ...
0
votes
2answers
188 views

How to set onmousedown event for dynamically created div in IE?

I have a (javascript) tool which dynamically creates a div whenever the user clicks on the screen. _newDiv = document.createElement('div'); Now, after I've created _newDiv, I want to assign a ...
0
votes
1answer
119 views

LeftMouse + OnMouseMove = Laggy in chrome

I need help for another problem with my Pixel-Editor: http://toolhub.net/pixel/ When you draw really fast in Chrome, you won't have a constant drawing line. In Firefox 6 + IE 9 its fine. The problem ...
0
votes
3answers
162 views

jQuery can't apply onmousedown to anchor tags

I have a navigation menu like this <ul id="nav"> <li> <a id="firstLink" href="#"> Link 1 </a> </li> <li> <a id="secondLink" href="#"> Link 2 </a> ...
0
votes
1answer
59 views

swfobject and Mouserdown Event

I am trying to find a way to know when a user clicks on a swfobject. I tried flashMovie.addEventListener("mousedown", onPlayerMouseDown, false); but it works only on Mac OS and not on Windows/Linux. ...
0
votes
0answers
327 views

HTML5 Canvas… Why Does OnMouseDown not work with the following code

Trying to get the following code to start a new path onmousedown but have had no luck... Thanks in advance mousemoveHandler: function(inSender, e) { if ( (this.owner.dragging) && ...
0
votes
1answer
85 views

Submit Button mousedown event

I had a question regarding a mousedown image swap with a submit button. here is the submit button code: <input src="submit.png" type="image" class="submit" id="submit"> I tried to add an ...
0
votes
0answers
159 views

how to detect mouse down in chrome after scroll button was pressed

in chrome after you press down the middle mouse button on a page where you can scroll you get that little black arrow as a cursor and the round thing underneath. how can i detect a mouse down event ...
0
votes
1answer
216 views

MouseDown in WinForm ListBox Kills SelectedIndexChanged

I'm writing some code to detect toggling of selections in a WindForms ListBox with MultiSelect turned on. Since SelectedIndexChanged only lets me see what is selected after the click, I was looking ...
0
votes
0answers
44 views

Cannot select div under a certain size because text gets in the way

I noticed that when I create a div that was very small (ie 6px by 6px) and insert slightly larger sized text in it (ie 12px font size), functions such as onMouseDown don't register correctly, while ...
0
votes
2answers
351 views

prevent mousedown function when scrollbar used

I've got a div that shows onclick for a link and I want to hide when the mouse is clicked outside the div (similar to most modal box functionality) - the problem is that when the user uses the browser ...
0
votes
1answer
398 views

JavaScript OnMouseDown Image Hover Effect Help

So here's the thing I made a stopwatch (that you can view here). However when you try it out you'll see there's some problems, and what I'm trying to achieve is... When I hover over the start ...
0
votes
1answer
516 views

Make Object Follow Mouse On MouseDown and “Stick” On MouseUp

I'm working with a project that is WPF and VB.net. I want to visually simulate "dragging" an object (though I do not want to use standard drag and drop for reason of purpose). Basically, I have a ...
0
votes
1answer
77 views

Could not find attribute 'onmousedown' VB.net

Why does Visual studio give this message in the task list when I use "onmousedown" on an asp:button: Could not find attribute 'onmousedown' of element button Surely it does exist. After all, ...
0
votes
1answer
178 views

onmousedown play sound

How do I make a function in JavaScript that onmousedown in a specific elemtent executes this: document.getElementById('KeyOfC').play(); and on mouseup executes this: ...
0
votes
1answer
326 views

Create rectangle on image using mouseDown C++/CLI

I am having difficulty debugging this program. I am trying to imitate the function on microsoft desktop that you can drag into a rectangle. We want to make it so that it: 1. in order to start ...
0
votes
4answers
409 views

jQuery - triggering a regular function call on mousedown

I want a function to be called regularly at a given interval whilst the left mouse button is being held down over a specific element. Is there a simple way of doing this in jQuery or should I use ...
0
votes
3answers
547 views

jQuery use of vertical scrollbar and mousedown - FireFox works, IE has issue

I have a menu scripted with jQuery, which pops out when triggered by an event. It has a vertical scroll bar on the side. The scrolling works fine in FireFox, but not in IE (8 or 9). I guess it has ...

1 2