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
2 answers

How to open fotorama fullscreen mode by click on main image?

I'm using fotorama js plugin for product gallery. How to turn on fullscreen mode when clicking on main image (not thumbnails)? I want to allow user to open fullscreen mode by click on image instead fullscreen icon on right top corner. This answer…
bozydarlelutko
  • 511
  • 7
  • 21
2
votes
1 answer

Balloontip how can I catch a click C#

I'm trying to create a balloontip (windows popup) and want to know if the user clicks on it. But I can't catch the click. I've already tried a few things but it won't work. notification.ShowBalloonTip(5000); notification.BalloonTipClicked…
D. J.
  • 684
  • 6
  • 25
2
votes
4 answers

How to execute .click() after jQuery animation completes?

I want to slideUp one div after clicking a link, then slideDown another div, then go to the next page. Problem: new page loads before the animations are finished. Question: How can I do this? Should I use preventDefault and then some way to resume…
Hannemaatje
  • 473
  • 1
  • 4
  • 9
2
votes
1 answer

Chrome 56 mobile addEventListener "click" not working

I encounter a problem where click event on Link Element (A tag), or any other DOM Element, is not calling handler/callback function. it doesn't matter which parent in the hierarchy I am getting it not getting this event. no…
Nisim Joseph
  • 2,262
  • 22
  • 31
2
votes
1 answer
2
votes
2 answers

If statement (button not clicked)

I want to hide an element if it is clicked outside the element it self. als But it can't be closed if the menu button is clicked. Now I have the following code: $(document).mouseup(function test (e) { var button = $('.menu-button').data('clicked',…
Justin
  • 53
  • 7
2
votes
3 answers

C# - WPF - create buttons and click event programatically

I have a question. Is it possible to create dynamically buttons and click events to it ? For example I want to create 4 buttons with 4 different click events. It is not necessary to make it with MVVM pattern. At the begining I would like just to…
KinectUser
  • 31
  • 2
  • 2
  • 11
2
votes
3 answers

Facebook Pixel to track a click on a link

I want to track each time someone clicks on a link on my web (this click makes a file to be downloaded) to optimise my Facebook Ads (pay per conversion). After including the Facebook pixel in the head section of my web, I have to track this event,…
Eu Román
  • 165
  • 1
  • 1
  • 11
2
votes
5 answers

How to programmatically click on a text input using JQuery?

I'm trying to implement a messaging application in my game, so instead of clicking on the input text field manually, I want users to only press "enter", write something, then press "enter" again to submit. For some reason, when I do this (press…
tery.blargh
  • 405
  • 1
  • 6
  • 23
2
votes
1 answer

Fire Javascript function on custom marker click for AmCharts

I'm trying to utilize an AmChart world map that has custom HTML markers (just like this example: https://www.amcharts.com/demos/custom-html-elements-map-markers/) The code I have is below and I have added what I hoped would be a valid click listener…
Dan
  • 2,304
  • 6
  • 42
  • 69
2
votes
1 answer

WebDriver clicking wrong URLs

I am using the latest version of webdriver. While I can select the right links it seems as the wrong links are actually clicked. Here is some code to use for Google. What it does is simply clicking a result of a Google Search. @FindBy (id…
2
votes
2 answers

Working with checkboxes from javascript controller

I'm creating ajax based application. Now I'm working with client side javascript. I created controller which works correctly according to application logic, but i have problems with updating views which contains checkboxes. Here is short example of…
2
votes
1 answer

Python: Selenium button click doesn't work but '\n' does

Hi I have this short code snippet: search_box = self.browser.find_elements_by_id('main-search-box') search_box[0].click() search_box[0].send_keys('{0} {1}'.format(first_name, last_name)) search_button =…
Bob Sacamano
  • 699
  • 15
  • 39
2
votes
1 answer

How can I tell which button was pressed LAST - SWIFT?

Pretty basic - I have multiple buttons and I just need to tell which button was pressed most recently, despite how many times on each or how long between clicks.
koz
  • 195
  • 1
  • 13
1 2 3
99
100