link for jsfiddle: http://jsfiddle.net/6UWZQ/1

look on this live link, if you click on any row on delete or edit and after click cancel, the button will remain highlighted (only in Firefox)

I make the buttons like this:

$("input[type=submit]").addClass("abtn"); 
$("tbody a").addClass("abtn");
$(".abtn").button();

and I add a confirm dialog for each form by using a css class on the submit button like this:

<script type="text/javascript">
        var currentFormconfirm;
        $(function () {
            $("#dialog-confirm-confirm").dialog({
            show: "drop",
            hide: "fade",
                resizable: false,
                height: 220,
                width: 400,
                modal: true,
                autoOpen: false,
                buttons: {
                    'Yes': function () {
                        $(this).dialog('close');
                        currentFormconfirm.submit();
                    },
                    'Cancel': function () {
                        $(this).dialog('close');
                    }
                }
            });
            $(".confirm").click(function () {
                currentFormconfirm = $(this).closest('form');
                $("#dialog-confirm-confirm").dialog('open');
                return false;
            });
        });

</script>
<div id="dialog-confirm-confirm" title="Confirm dialog">
    Are you sure you want to delete this foobar ?
</div>

and the form:

<form action="/awesome/foobar/Delete/7" method="post" class="fr">
                    <input type="submit" class="confirm abtn ui-button ui-widget ui-state-default ui-corner-all" value="Delete" role="button" aria-disabled="false">
                    </form>
link|improve this question

Seems you've fixed it :-) – Darin Dimitrov Oct 5 '10 at 6:43
@Darin Dimitrov no in my firefox 3.6.8 (win7) it remains highlighted – Chuck Norris Oct 5 '10 at 6:44
1  
please show some code. We are not going to debug what's going on on your server. It takes too much time. Try to narrow down the problem to a simplest possible example and post here or even on jsfiddle.net. With a question like this there's no value brought to the community whatsoever. – Darin Dimitrov Oct 5 '10 at 6:48
@Darin Dimitrov I've added the code that does the buttons and the confirm dialog – Chuck Norris Oct 5 '10 at 6:54
@Darin Dimmitrov I've narrowed the problem and put it on jsfiddle jsfiddle.net/6UWZQ – Chuck Norris Oct 5 '10 at 7:46
feedback

4 Answers

up vote 3 down vote accepted

That seems like a bug in jquery ui 1.8.1. Here's a simplified test case to reproduce the behavior. The problem is that ui-state-focus class is not removed.

link|improve this answer
feedback

Hoang's solution works, but if you don't want to hack the jquery ui source an alternative way is to call removeClass inside your onClick. Example:

button.click(function() {
    button.removeClass("ui-state-focus ui-state-hover");
}

Note, though, that both solutions still have this quirk: if you click and release it will unfocus, but if you switch tabs and come back it'll be focused.

link|improve this answer
see also: forum.jquery.com/topic/… – Susan Apr 2 '11 at 0:09
feedback

In "jquery-ui-1.8.7.custom.min.js" file, at jQuery UI Button area, change

.bind("mouseup.button",function(){
    if(c.disabled)return false;
    a(this).removeClass("ui-state-active")
})

to

.bind("mouseup.button",function(){
    if(c.disabled)return false;
    a(this).removeClass("ui-state-active ui-state-hover ui-state-focus")
})
link|improve this answer
feedback

since it's a jquery bug, my solution is to do this instead of button():

   $(".abtn")
                .hover(function () { $(this).addClass("ui-state-hover"); },
                    function () { $(this).removeClass("ui-state-hover"); })
                .bind({ 'mousedown mouseup': function () { $(this).toggleClass('ui-state-active'); } })
                .addClass("ui-state-default").addClass("ui-corner-all")
                .bind('mouseleave', function() { $(this).removeClass('ui-state-active') });
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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