Questions tagged [click]

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

In user interfaces, click refers to the depressing of a mouse button or similar input device. Most user interface languages provide the facility to track click . Such an event is usually dispatched after the user has pressed, then released the mouse button.

9400 questions
2
votes
1 answer

d3js, detect click above chart

I have a grouped column chart built with d3.js v4. When the user clicks on a single chart, the other ones will become less visible to highlight the clicked chart. Now I have an usability issue: when the chart is very short, it's a little bit too…
Stack Diego
  • 1,309
  • 17
  • 43
2
votes
2 answers

HTML - Implementing a button with a custom clickable shape from a PNG image with transparency

I have the following PNG image with transparency: I would like to make a button in HTML & CSS that uses the alpha channel as a mask, so that it only works if the users clicks in the pink area. Is that possible? How can it be implemented?
Andrew w
  • 21
  • 3
2
votes
0 answers

Cordova iOS WebView loses touch events, interface is unresponsive

I developed an app with Framework7 with material theme + Cordova cli 6.5.0 and Cordova-iOS 4.3.1 and Xcode 8.3. Sometimes, the app loses touch events. The interface doesn't work, but the app is working because onresume Cordova event, I call a…
ciossi
  • 143
  • 1
  • 8
2
votes
1 answer

SharedPreferences save a button change invisible after click on it and let appears another button

I'm new here. I'm french so maybe my english is not very good, sorry for that. I'm a beginner in Android development, I got to create an app for finish my study. I have an activity number 1 called VoeuxActivity.java with 8 buttons (and 8 TextViews),…
Ghiggz Pikkoro
  • 136
  • 1
  • 14
2
votes
1 answer

cordova local notification click event parameters are empty

I'm working on a cordova application which has a local notification plugin. which I found at this git: https://github.com/katzer/cordova-plugin-local-notifications I have a problem when I run the click event of a notification. What is happening is…
Luke Griffiths
  • 119
  • 1
  • 1
  • 12
2
votes
3 answers

jquery click function only working once?

I'm new to JavaScript. I'm making a weather app that is using the wunderground API which fetches the current weather for the user's location. I want to allow the user to toggle between fahrenheit and celsius temperatures on a click. The app…
Scott
  • 1,207
  • 2
  • 15
  • 38
2
votes
1 answer

shiny interactive plot cannot find click input in server

I am trying to make an interactive plot in shiny. When I click on the original plot, I want to show info about the point I clicked in a separate fluidRow (another table/plot). I flowed some example online to setup my UI in which the click input…
Kenny
  • 355
  • 1
  • 5
  • 14
2
votes
3 answers

td.click doesn't fire in jQuery

I have this table:

Data
... And this jQuery-Source: $('#dataMenuItem').click(function() { …
Sven
  • 111
  • 2
  • 2
  • 5
2
votes
0 answers

Open File Upload from select options not working in some Browsers

I want the user to click on a div which has a select box under it, with display:none, so the user clicks that div, and the options should appear. In mobile a native popup should appears with the options (This works good no problem here) The main…
Miguel
  • 3,349
  • 2
  • 32
  • 28
2
votes
1 answer

Click the second button of an img in VBA

I'm trying to click an imagebutton on IE by using getAttribute("src"), but there are to identical buttons with the same src-code, so when I use this code, it clicks the first and I want to click the second. Can somebody help me? I'm thinking of…
Suhr415
  • 35
  • 6
2
votes
3 answers

jQuery - left click context menu plugin

I am looking for something that has similar functionality like context menu on dropbox.
nick.shadow
  • 21
  • 1
  • 2
2
votes
1 answer

Capture and Stop Middle Click

I know - this has been asked before, HOWEVER: People keep saying "you can't do that in Firefox", etc. etc. (specifically, this answer: Disabling middle click scrolling with javascript) ...then how does this do…
keif
  • 580
  • 4
  • 17
2
votes
1 answer

python listing mouse click coordinates

I would like to record and append to a list the x and y coordinates of limited number of mouse clicks (10 in this case (This will be a variable)). The script needs to record the clicks over the desktop, browsers or applications in general. I am…
2
votes
2 answers

How to get the selected value from a list

I am new to angularjs and javascript.I am using a contextmenu in the text-angular. So, My code is like -
2
votes
0 answers

RecyclerView Child Items scroll events and click events

Is there any method to temporary disable recyclerview child items clickable and scrollable? recyclerView1.setOnTouchListener(new View.OnTouchListener() { @Override public boolean onTouch(View…
Wei Long
  • 65
  • 2
  • 10
1 2 3
99
100