I have a question concerning the actionButon() function in shiny application. In the RStudio Shiny Web site, it is explained that the actionButton includes some JavaScript code that sends numbers to the server. When the web browser first connects, it sends a value of 0, and on each click, it sends an incremented value: 1, 2, 3, and so on. How is possible to know when the users clicks on the button without using the value of the button?
Thanks