disable message and show dialog
Hi,
I am using jquery validation and I want to disable the appended or inline messages and display it in a dialog instead.
So is it possible to set the:
- messages:
- {
- firstname: "Enter your First Name",
- lastname: "Enter your Last Name",
- email:
- {
- required: "Enter your Email",
- email: "Please enter a valid email address.",
- }
- }
but then show in it:
- $('#msgAlert').html(message);
-
- $('#dialogAlert').popup();
- $("#dialogAlert").popup("open");
Thanks,