jQuery.confirm title default
Hi I have a confirm popup that appears as expected, is there a simple / quick & dirty way to change the label at the top? At the moment it just gives the full URL in the address bar as the title.
- $(document).ready(function (event) {
-
- $(document).submit(function (event) {
-
- if (!confirm("Are you sure you wish to submit?")) {
- event.preventDefault();
- }
- });
- });
Any suggestions?
Regards