jQuery.confirm title default

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.
  1.             $(document).ready(function (event) {

  2.                 $(document).submit(function (event) {
  3.                     
  4.                     if (!confirm("Are you sure you wish to submit?")) {
  5.                         event.preventDefault();                        
  6.                     }
  7.                 });
  8.             });
Any suggestions?

Regards