Tagged Questions

In user interfaces, click refers to the depressing of a mouse button or similar input device.

learn more… | top users | synonyms

21
votes
3answers
1k views

How is click-fraud detected?

Which methods do Google (and other PPC companies) use to prevent click fraud?
21
votes
4answers
34k views

Android - ListView click HOWTO?

How do I listen to click event on a ListView? This is what I have now ListView list = (ListView)findViewById(R.id.ListView01); ... list.setAdapter(adapter); When I do the following ...
19
votes
4answers
30k views

Can I call jquery click() to follow an <a> link if I haven't bound an event handler to it with bind or click already?

I have a timer in my javascript which needs to emulate clicking a link to go to another page once the time elapses. To do this I'm using jquery's click() function. I have used $().trigger() and ...
17
votes
14answers
11k views

jQuery click off element event

I have a floating div that gets displayed, and I want it to be hidden when the user clicks off the div. This would be similar to the .hover() funtion callback when hovering off an element. Only I ...
16
votes
3answers
134 views

jquery nth-child click

I have the following code: css: nav div:nth-child(1) { background: red; } nav div:nth-child(2) { background: blue; } nav div:nth-child(3) { background: yellow; } html: <nav> ...
16
votes
4answers
196 views

jQuery children a href click does not work

I have this code: <html> <head> <title>site</title> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js" ...
12
votes
7answers
388 views

Dialog Click listener not triggering in IE8 or Firefox with jQuery

I have this click listener and for some reason it's not triggering in IE8 or Firefox: console.log("listener attached"); jQuery(".ui-button-text").click(function() { console.log("this should ...
12
votes
3answers
2k views

Jquery, checkboxes and isChecked

When I bind a function to a checkbox element like: $("#myCheckbox").click( function() { alert($(this).is(":checked")); }); The checkbox changes it checked attribute before the event is ...
11
votes
1answer
8k views

HTML5 canvas click event

I made an array of squares ctx.fillStyle = "rgb(0,0,0)"; for(x=0;x<=25;x++){ for(y=0;y<=25;y++){ ctx.fillRect(x, y, 20, 20); } } and I want a square to change its colour when ...
10
votes
2answers
11k views

Android - play sound on button click - Null pointer exception

I am trying to play a sound file on the click of a button. The sound is just 1 sec long. It plays well the first few times I click the button, but after a while it gives a NullPointerException. Here's ...
10
votes
4answers
3k views
9
votes
2answers
2k views

Triggering a JavaScript click() event at specific coordinates

Trying to fire off (trigger) a click event. Its easy to do in jQuery, but cannot figure out how to set the coordinates of the event and send them along. Essentially, I need to trigger a click at a ...
9
votes
2answers
4k views

Eclipse Galileo click problem on Ubuntu 9.10

I've just upgrade my Ubuntu from 9.04 to 9.10 and I'm experimenting a very annoying problem with Eclipse Galileo. The problem is that Eclipse doesn't catch some button clicks. For example, I've tried ...
8
votes
3answers
149 views

jQuery click on appended elements

I have generated some html links with jQuery and appended it to some div but it seams that i can't call click method now, when these elements are appended (it worked ok when they were hardcoded into ...
8
votes
7answers
6k views

HTML “overlay” which allows clicks to fall through to elements behind it

I'm trying to overlay a element on top of a webpage (to draw arbitrary graphics), and I've come to the point where I can stack it inside of a element on top of everything, but this prevents the user ...
8
votes
4answers
7k views

Raise button (or any control) click event manually. C#

Can anyone tell me how to raise click event of button control (or for that matter for any event). Platform: .net 2.0/3.0/3.5 Language: c# Domain: Windows Application, WinForms, etc.
7
votes
3answers
69 views

Changing HTML depending on where I click with javascript/JQuery

In an html page you might have some code with two paragraphs like this: <hr /> <p>The first paragraph</p> <p>The second paragraph</p> <hr /> and very simply, ...
7
votes
4answers
858 views

What is the best way to simulate a Click with MouseUp & MouseDown events or otherwise?

In WPF most controls have MouseUp and MouseDown events (and the mouse-button-specific variations) but not a simple Click event that can be used right away. If you want to have a click-like behaviour ...
7
votes
9answers
335 views

Jquery: is there a way to highlight the text of a Div when you click on it?

With Jquery is there a way to highlight/select(like if someone were to select it with the mouse) the text inside of a div that i click on? not a textbox, just a normal div. i'm trying to make a ...
7
votes
1answer
1k views

html5 canvas clicking on bezier path shape detection

I have a canvas with some irregular shape drawings in it, and I would like to have a feedback when someone clicks on a specific one? I've been looking everywhere for this and have only found ...
7
votes
2answers
4k views

How can i check if key is pressed during click event with jquery?

I would like to catch a click event with jquery and be able to tell if a key was pressed at the same time so I can fork within the callback function based on the keypress event. For example: ...
7
votes
2answers
5k views

Android: long click on the child views of a ExpandableListView?

ExpandableListView has a setOnChildClickListener method, but lacks of setOnChild*Long*ClickListener method. When I added setOnLongClickListener() on child view in getChildView(), whole sublist became ...
7
votes
3answers
3k views

jQuery: Binding and Unbinding Live Click Events

So there are two constraints to my question: I must use an external function call in my click event, and I must use a live click event, rather binding a typical click event. So my problem is that ...
7
votes
12answers
4k views

Programatically press a button on another application (C, Windows)

I'm trying to use the following code to press a button on my other application: HWND ButtonHandle; if( (wnd = FindWindow(0, "Do you want to save?")) ) { ButtonHandle = FindWindowEx(wnd, 0, ...
7
votes
11answers
14k views

iPhone: how to make key click sound for custom keypad?

Is there a way to programmatically invoke the keypad "click" sound? My app has a custom keypad (built out of UIButtons) and I'd like to provide some audio feedback when the user taps on the keys. I ...
6
votes
1answer
304 views

How can I detect visited and unvisited links on a page?

My aim is to detect the unvisited links on a webpage and then create a greasemonkey script to click on those links. By unvisited links here I mean the links which are not opened by me. Since I can see ...
6
votes
3answers
3k views

HTML5 canvas advanced framework

I need HTML5 canvas framework to do: draw object (e.g. rectangle) on onmouseover event of the object change color/border style on click do some js action thx EDIT: I have finally decided to use ...
6
votes
2answers
18k views

Jquery how to append and remove on a div click event

I am new to using jquery and would like to know how to append and also remove the IDs from divs using the click event and appending to html. In the code below I have been able to append the IDs from ...
6
votes
2answers
5k views

Java : ignore single click on double click?

Hiya - can anyone think of a good way to ignore the single click that comes with a double-click in Java ? I'm looking to have different behaviors for each such that: single-click paints crosshairs ...
5
votes
1answer
76 views

How to remove onclick delay and keep the fast scrolling in mobile web application

I am developing a Web application on OS Android using PhoneGap. For a quick response from the user interface buttons, I use the following solution: ...
5
votes
1answer
52 views

click handler with dojo editor

i have this code: <!DOCTYPE HTML> <html> <head> <script src="http://ajax.googleapis.com/ajax/libs/dojo/1.7.1/dojo/dojo.js" type="text/javascript" djConfig="parseOnLoad: ...
5
votes
3answers
97 views

Compare 'e.target' to a jQuery object

What I want to do: ( clickedObject === someDiv ) //returns true or false What I tried ( $(e.target) === $('.selector') ); //returns a false negative. My workaround ( $(e.target).attr('class') ...
5
votes
4answers
211 views

Clicking on a Label to focus another control in WPF

I have taken a break from WPF for about a year and I am stumped by this simple problem. I swear there was an easy way to tell a label to focus to another control when it is clicked. ...
5
votes
2answers
1k views

click using javascript

What I want to do is execute a mouse click say on youtube to press play when the page loads. How do I click that specific location (assuming it is always in the same location)? I have tried and ...
5
votes
2answers
482 views

jquery datepicker prevent native click in onSelect

I'm in struggle trying to prevent native click inside jquery datepicker.onSelect event Example below is not working, click still is being triggered: onSelect: function(dateText, inst) { if ...
5
votes
4answers
344 views

Why is the Winforms Click event slower than the MouseClick event?

I'm adding buttons to form with loop and i noticed adding click event handlers slowing down application too much. Later i tried mouse click event instead click event and it is working instantly. This ...
5
votes
4answers
968 views

jQuery click event, ignore double clicks

I have a simple jQuery animation that moves a div to the right or left, upon a .click() event. However, if the user clicks the event twice, it fires twice, which messes up the formatting. Here's an ...
5
votes
3answers
493 views

How can I simulate a click on a jQuery UI radio button?

I have some radio buttons <div id="typeRadios"> <input id="character_chartype_a" name="character[chartype]" type="radio" value="A" /><label ...
5
votes
2answers
132 views

How to tell what physical device clicked a button in C#?

I have a Form with buttons. This application is meant to run on a touchscreen computer. When a button is clicked I would like to know whether it was clicked by the mouse or the touchscreen. Is this ...
5
votes
3answers
3k views

Android: Disable highlighting in GridView

How can I turn off the orange highlight when clicking an item in a GridView? I haven't been able to find a solution in the documentation or through testing.
5
votes
5answers
2k views

jQuery/Javascript: Click event on a checkbox and the 'checked' attribute

The code: $('input.media-checkbox').live('click', function(e){ e.preventDefault(); var that = $(this); if (that.attr('checked') == 'checked'){ var m = that.attr('media'); ...
5
votes
2answers
4k views

jquery click doesn't work on hyperlink

I have a simple link click simulation that I want to do using jquery. From what I've read, this should work, but the below code doesn't seem to work. Nothing happens if I do the same thing as a part ...
5
votes
2answers
6k views

jQuery not working in AJAX Loaded page

I am using jQuery to load a page by AJAX using $.ajax (suppose test.html).Its a simple HTML document with a few buttons and associated animations upon clicking them (also using jQuery).The .click() ...
5
votes
5answers
20k views

OnClick in Excel VBA

Apart from being horribly annoyed with Excel VBA ... I have this question: Is there a way to catch a click on a cell in VBA with Excel? I'm not talking about the Worksheet_SelectionChange event, as ...
4
votes
1answer
28 views

swich off others element with the same selectors and switch on the clicked one in jquery

I've a simple list of play button, such as <a class="play" rel="video-1"></a> <a class="play" rel="video-2"></a> and when I click to one of these I wish to switch off ...
4
votes
3answers
92 views

My button needs two clicks instead of one

I am working on a small app in C# that refreshes a web page until some conditions are met. I have a "Fire" = start refreshing button and a "Stop!" button that is supposed to stop the operation. My ...
4
votes
1answer
103 views

jQuery drop down navigation with click event

I need to create a simple (2 levels) drop down menu with jQuery. There are a lot of solutions for drop down menus in the web but they all works with hover event. To be sure that it will work in iPhone ...
4
votes
1answer
95 views

Have a click anywhere on a web page open a select dropdown

I'm building a web page that will be viewed on mobile devices (Blackberry specifically). I have navigation drop down of sorts implemented as a <select> in the upper left corner of the page. ...
4
votes
2answers
252 views

HTML5 INPUT type='number' - distinguish between focus and value-change mouse clicks

In the HTML5 INPUT type='number' the user can change the value by clicking on up/down arrows that are part of the INPUT box. The user might also click in the box for focus or for editing its contents. ...
4
votes
2answers
52 views

click() Event in javascript with a PARAM?

I'm using the event click() to call a method in Code Behind, like this: HTML <asp:button bordercolor="White" id="btnAddGS" onclick="AddGSBandeira" runat="server"> JAVASCRIPT ...

1 2 3 4 5 34