0

enter image description here

How to remove prompt title "localhost says " using jquery

Mohammad
  • 21,175
  • 15
  • 55
  • 84
pala vamsi
  • 13
  • 4

2 Answers2

0

May be this can work. Also refer same hear.

$(".ui-dialog-titlebar").hide();
Community
  • 1
  • 1
Husen
  • 1,541
  • 10
  • 14
0

You can't. Only you can use your own module windows. Or libraries:

https://alertifyjs.org

http://bootboxjs.com/

http://t4t5.github.io/

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.

Andrey Nadosha
  • 262
  • 1
  • 4
  • 16