I am assuming you want to use jquery dialog box here. I don't think
there is a confirm box in jquery but the jquery modal dialog can be
used like a confirm box. Here's an example:

    $("#mydialog").dialog({modal:true, title:'Dialog Title',
resizable:false,
        'buttons':{ "OK": function() { DoOkProcessing();},
                    "Cancel":function() {$(this).dialog
("close");}}});
    $("#mydialog").dialog("open");

Hope this helps.

On Oct 30, 9:33 am, "Garg, Vijay" <vijay.g...@fmr.com> wrote:
> Hello,
> I want to change JavaScript Confirm () with Jquery so that I can apply
> some style sheets there. It should behave same as JavaScript where I can
> get user response and execute code based on user response. Has anyone
> have any idea about this.
>
> Thanks
> VIJAY GARG
>
> This e-mail, including any attachment(s) hereto, is intended only for
> the individual or entity to whom it is addressed. It may contain
> proprietary, confidential or privileged information or attorney work
> product belonging to Fidelity Business Services India Pvt. Ltd. (FBS
> India) or its affiliates. If you are not the intended recipient of this
> e-mail, or if you have otherwise received this e-mail in error, please
> immediately notify the sender via return e-mail and permanently delete
> the original mail, any print outs and any copies, including any
> attachments. Any dissemination, distribution, alteration or copying of
> this e-mail is strictly prohibited. The originator of this e-mail does
> not guarantee the security of this message and will not be responsible
> for any damages arising from any dissemination, distribution, alteration
> or copying of this message and/or any attachments to this message by a
> third party or as a result of any virus being passed on. Any comments or
> statements made in this are not necessarily those of FBS India or any
> other Fidelity entity. All e-mails sent from or to FBS India may be
> subject to our monitoring and recording procedures.

--

You received this message because you are subscribed to the Google Groups 
"jQuery UI" group.
To post to this group, send email to jquery...@googlegroups.com.
To unsubscribe from this group, send email to 
jquery-ui+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/jquery-ui?hl=en.


Reply via email to