I'm novice with jQuery dialog and I'm looking for a way to replace to ugly confirm javascript function by a jQuery dialog. If possible I would like a solution as easy as possible to set in place.
Example:
if (confirm("Are you sure?")) {
// user click Yes
}
To be replaced by a simple jQuery dialog solution. If possible an 'inline' solution like:
if jQconfirm("Are you sure") { ... }
I don't know if some solutions already exist?
Thanks.