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 6323183
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T16:28:12+00:00 2026-05-24T16:28:12+00:00

I have a bunch of validation javascript processes with confirms. I want to use

  • 0

I have a bunch of validation javascript processes with confirms. I want to use jquery ui dialog, but I need to return true for the rest of the validation processes.

For example:

var where_to_coupon = confirm(pm_info_msg_013);
      if (where_to_coupon== true) {
      doSubmit=true;
      return doSubmit;

So I need a function to replace confirm with a UI dialog, pull the message string (pm_info_msg_013), and use my own buttons or UI buttons to return true for the validation process.

Not sure where to start with this one.

help?

  • 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-24T16:28:14+00:00Added an answer on May 24, 2026 at 4:28 pm

    In jQuery UI dialog, set the modal option to true, and specify primary and secondary user actions with the buttons option.

        $( "#dialog-confirm" ).dialog({
            resizable: false,
            height:140,
            modal: true,
            buttons: [{
                text: pm_info_msg_013,
                click : function() {    
                    $( this ).dialog( "close" );
                    // code related to "where_to_coupon== true" goes here
                    // submit form
                    }
                }, {
                text: "Cancel",
                click: function() {
                    $( this ).dialog( "close" );
                    doSubmit = false;
                    // don't submit form
                }}]
        });
    

    See the demo here: http://jqueryui.com/demos/dialog/#modal-confirmation

    Update:
    This will allow you to create multiple confirms. Usage:

    function CreateDialog(okText, cancelText, okCallback, cancelCallback) {
            $( "#dialog-confirm" ).dialog({
                resizable: false,
                height:140,
                modal: true,
                buttons: [{
                    text: okText,
                    click : function() {    
                        $( this ).dialog( "close" );
                        okCallback();
                        }
                    }, {
                    text: cancelText,
                    click: function() {
                        $( this ).dialog( "close" );
                        cancelCallback();
                    }}]
                }
            });
    
    // ******* usage #1 ********    
    CreateDialog(pm_info_msg_013, "Cancel", function () {
       // where_to_coupon== true
    }, function() {
    
       // where_to_coupon== false
    });
    
    function OnConfirmTrue() {
      // do something
    }
    
    function OnConfirmFalse() {
      // do something
    }
    
    // ******* usage #2 ********
    
    CreateDialog(pm_info_msg_013, "Cancel", OnConfirmTrue, OnConfirmFalse);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a bunch of files that I need to be able to transport
I have a bunch of classes I want to rename. Some of them have
If jQuery is just a bunch of javascript libraries why would some features not
When doing validation in JavaScript, how do I keep validation methods that need to
I have a profile page with a bunch of textboxes and validators. The validation
I have bunch pages and I need to validate data there. If culture for
I have a UITextFieldDelegate that does a whole bunch of validation on user input
I have a bunch of insert, update, and delete operations I need to execute
We have bunch of Domain Entities which should be rendered to an html format,
week DKK id=radio2 value=75 /> I have bunch of these div entry generated by

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.