Not sure how to correctly formulate this question, but I will give him a chance. (If you have a suggestion on how to formulate this correctly so that others can find it, tell me and I will edit it).
I want to know the best methods for processing clicks on a page, which are then processed using AJAX. I temporarily used code that looks like this in HTML:
<a href="#clickable">Click me!</a>
And in jQuery, I handle clicks by binding clickto href.
Of course, I know that you should not report this to the user .
So how do I handle these clicks?
source
share