Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm posting this along with the best answer I have come up with. I haven't found any similar questions, so here goes.

When a input of type checkbox is converted to a jquery ui button, I have observed (as have others) that it only registers a click if the mouse is kept completely still while clicking. Any movement what-so-ever and nothing happens. To the user this can only be perceived as flaky and unreliable behavior.

How do others work around this behavior (observed with jquery 1.6.3/jquery ui 1.8.16 in chrome 14 and ie 8)? Is there something obvious I am missing since I have to go to such lengths to get the expected behavior?

share|improve this question

3 Answers

up vote 7 down vote accepted

I got the idea for this workaround from an issue report on the jquery ui page linked to above, but it needed a bit of work: jsfiddle

I attach a click listener on the label and handle the state change myself. I also found it necessary to prevent text selection on the toggle button. This is done with css (found that elsewhere on SO)

.unselectable {
   -moz-user-select: -moz-none;
   -khtml-user-select: none;
   -webkit-user-select: none;
   user-select: none;   
}

Maybe this can save the next person that wants to use the jquery ui toggle button some time and grief. If anybody has a better/cleaner solution, I am very interested!

share|improve this answer
Interesting. There have been a few bug reports as well. There is another one that opened: bugs.jqueryui.com/ticket/7665 This is good to know though. – Matt Oct 10 '11 at 9:57
good idea, but it doesn't work when you add the class from script and then use .on("click") to handle click event – david Sep 4 '12 at 20:12

Actually, there is a bug in 1.8.13 and previous versions. If you click on a button and move/drag your cursor, then a button visually gets a selected state, but the underlying checkbox/radio is not selected. As a consequence, the form data sent to the server is inconsistent with what the user sees.

From version 1.8.14 this bug is solved. The downside is that you have to keep your mouse still. Keep that in mind, if you decide to use older version of jquery-ui.

share|improve this answer
And does somebody know why is this happening? I tried to use unselectable class by adding it to UI code, but it didn't hlep. – david Sep 4 '12 at 19:40

I know this is a really old question, and has since been fixed, but I found this to be the only fix that worked for me:

http://ultcombo.github.com/UltButtons/

Hopefully jQuery will fix the actual issue soon.

share|improve this answer

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.