Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I used the :active pseudoclass on my buttons to change the padding and border color when clicked. This visually mimics a button press. See an example.

Works in FF. In Chrome, though, the clicks don't always register. Specifically, if you click-and-hold on the text inside the button, then drag off the text (but still inside the button), the click will not fire. Same goes if you click in the padding, then drag into the text.

I've read weird things about buttons and padding in FF vs. Chrome but I can't figure out how to solve this problem.

share|improve this question
It works for me wherever I click/drag? (Chrome v20.0.1132.3 dev-m) – JoeJ May 15 '12 at 21:48
Hmm, I am using 19.0.1084.36 beta-m ... Although I've noticed this on many different installs and machines, one of which I just fresh installed Chrome on last week. – Tony R May 15 '12 at 21:51
I'm also experiencing this on Chrome 19. Firefox 12 behaves as expected as you noted. – gmeben May 28 '12 at 19:18
You should also consider reporting this on the Chromium issue tracker, as it does not seem a very rational behavior on Chrome's part. – lanzz May 28 '12 at 19:26
Okay, thanks lanzz and gmeben. I first needed just a sanity check that I wasn't making some silly mistake. The first wave of responses made me think I was going crazy. – Tony R May 28 '12 at 19:45
show 1 more comment

6 Answers

up vote 7 down vote accepted
+100

Solution: Give it a Single Thing to Click

Adding a position: relative to the button and then overlaying it with a :before pseudo element like so:

button:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

Seemed to resolve the bug for me. See this fiddle. I imagine it resolves the bug (which I do think it is a bug) by giving a single "element" to focus upon when it is clicked.

share|improve this answer
Fantastic, a css-only solution. To, me all the other answers screamed "WORKAROUND," adding event listeners to every button and yada yada. But yours is way cleaner. You're getting the bounty if nobody else comes up with a better one =D. – Tony R May 31 '12 at 22:16

Try this: http://jsfiddle.net/uPZuJ/22/ http://jsfiddle.net/uPZuJ/25/

This is how it works:

  1. Initialize 'down' to false
  2. mousedown on button causes 'down' to be true
  3. On mouseup/click, if 'down' is true, append text 'click' and set 'down' to false

Clicking triggers a click.

Dragging the text into the padding triggers a click.

Dragging the padding into the text triggers a click.

Dragging from the inside to the outside does not trigger a click.

Dragging from outside to inside does not trigger a click.

Here is the code:

var down=false;
$("button").mousedown(function() {
    down=true;
});
$("button").mouseup(function() {
    if(down) {
        $("#clicks").append("<div>click</div>");
    }
    down=false;
});
$("button").click(function() {
    if(down) {
        $("#clicks").append("<div>click</div>");
    }
    down=false;
});
share|improve this answer
I still get no click event on Chrome 21. It might be a bug. – Blender May 30 '12 at 4:24
@Blender It works for me with the latset stable version - 19.0.1084.52... – uınbɐɥs May 30 '12 at 6:01
It doesn't work in Chrome! – Someth Victory May 30 '12 at 7:50
@SomethVictory - which version of chrome are you using? – uınbɐɥs May 30 '12 at 19:45
I am using 18.0.1025.162. But this should support most of browser version, and also various browser as well. – Someth Victory May 31 '12 at 1:14
show 2 more comments

Use "mouseup" instead of "click", it should work in ie, chrome and ff.

 var elementName = "";

    $("button").mouseup(function() {

        if (elementName != "" && elementName == "BUTTON") {


            $("#clicks").append("<span>click</span><br/>");
            elementName = "";
        }

    });


    $("button").mousedown(function() {

        elementName = $(this).get(0).tagName;

    });
share|improve this answer
This event fires even if the click is initiated outside of the button, which I'm guessing is not the desired functionality. – Jonathan S. May 30 '12 at 3:30
I have edited the code, try it, its a workaround to cater the issue. – MSUH May 30 '12 at 5:25

After having playing around with your example, I think I got what happen behind the scene. By default click event will check both mousedown and mouseup event to be fired before it fires the callback. The problem is that you click on the text, your current target is the text now(it means mousedown event is already fired inside the text area, and it's waiting for mouseup event to be fired in order to complete a click event). However, you drag cursor out of the text and release mouse outside the text area, and your current target now is the Button, not the text anymore(mouseup event doesn't fire inside text area, but inside button area), so click event won't happen. However, if you click on the text and drag, and release your mouse inside text area, it will works just fine. This is the problem of event bubbling or capturing. In jQuery we have event.stopPropagation() or event.stopImmediatePropagation, but it just works for FF, not in Chrome.

What I suggest is using mousedown and mouseup event instead of click event.

share|improve this answer

Try this one: http://jsfiddle.net/uPZuJ/9/

Instead of checking for both mousedown and mouseup on the same element, check only for mousedown on your button and then check for mouseup on any other element.

share|improve this answer
Any other element? In the entire document? It's normal behavior for buttons to disregard mousedowns if the mouseup happened outside the button, in order to let the user "cancel" their decision mid-click. This is changing paradigms... – Tony R May 28 '12 at 19:46
Then what are you trying to achieve? – Blender May 28 '12 at 20:06
You need to re-read the question a few more times. I'm not dragging OFF the button. I'm dragging from the TEXT into the PADDING. – Tony R May 28 '12 at 20:09
Then just change html to this in the JavaScript: jsfiddle.net/uPZuJ/10 – Blender May 28 '12 at 21:22

Your button works great in Chrome. I have fixed the "click-and-hold on the text inside the button" thing by few lines of CSS and a attribute for IE. http://jsfiddle.net/uPZuJ/2/

EDIT: This is a screenshot of the bug I fixed:

enter image description here

share|improve this answer
Didn't work - I'm still seeing the same behavior. – Tony R May 15 '12 at 21:53
Didn't it fix the text selection issue? – Registered User May 15 '12 at 21:54
Your button works 100% in my Chrome, didn't skip a single click. – Registered User May 15 '12 at 21:56
I never said anything about text selection. All I know is that if you drag on/off the text, the button doesn't register a click. I don't see any text getting selected. – Tony R May 15 '12 at 21:57
This is what you wrote in OP: "Specifically, if you click-and-hold on the text inside the button" – Registered User May 15 '12 at 21:57
show 5 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.