
How to remove prompt title "localhost says " using jquery

How to remove prompt title "localhost says " using jquery
 
    
     
    
    May be this can work. Also refer same hear.
$(".ui-dialog-titlebar").hide();
You can't. Only you can use your own module windows. Or libraries:
Example from last link:
swal({
title: "An input!",
  text: "Write something interesting:",
  type: "input",
  showCancelButton: true,
  closeOnConfirm: false,
  animation: "slide-from-top",
  inputPlaceholder: "Write something"
},
function(inputValue){
  if (inputValue === false) return false;
  if (inputValue === "") {
    swal.showInputError("You need to write something!");
    return false
  }
  swal("Nice!", "You wrote: " + inputValue, "success");
});
You can find a lot of good libraries in google.
