Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1043365
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T15:39:23+00:00 2026-05-16T15:39:23+00:00

How do I go about disabling a button on the jQuery UI dialog .

  • 0

How do I go about disabling a button on the jQuery UI dialog. I can’t seem to find this in any of the documentation in the link above.

I have 2 buttons on the modal confirmation (“Confirm” and “Cancel”). In certain cases, I want to disable the “Confirm” button.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T15:39:23+00:00Added an answer on May 16, 2026 at 3:39 pm

    If you’re including the .button() plugin/widget that jQuery UI contains (if you have the full library and are on 1.8+, you have it), you can use it to disable the button and update the state visually, like this:

    $(".ui-dialog-buttonpane button:contains('Confirm')").button("disable");
    

    You can give it a try here…or if you’re on an older version or not using the button widget, you can disable it like this:

    $(".ui-dialog-buttonpane button:contains('Confirm')").attr("disabled", true)
                                                  .addClass("ui-state-disabled");
    

    If you want it inside a specific dialog, say by ID, then do this:

    $("#dialogID").next(".ui-dialog-buttonpane button:contains('Confirm')")
                  .attr("disabled", true);
    

    In other cases where :contains() might give false positives then you can use .filter() like this, but it’s overkill here since you know your two buttons. If that is the case in other situations, it’d look like this:

    $("#dialogID").next(".ui-dialog-buttonpane button").filter(function() {
      return $(this).text() == "Confirm";
    }).attr("disabled", true);
    

    This would prevent :contains() from matching a substring of something else.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I currently have several action buttons in different pages, and each button performs some
My question is related about disabling links/click events with jQuery, and it's probably easier
I read this very useful article about disabling all the https certificates programmatically. I
How can I programatically check phone is wifi capable? I'm NOT talking about enabling/disabling
I can't find sure answers on some questions I had about push/local notifications. Does
About to start another jquery mobile site for an existing website. Cut down version
About to create a form using Zend Form, all the form elements should have
About six years ago, a software engineer named Harri Porten wrote this article ,
Preamble: I know, disabling warnings is not a good idea. Anyway, I have a
Consider this example: Private Sub Button_Click( sender As Button, e As RoutedEventArgs) Handles btn.Click

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.