1

Is there anyway to hide the confirm box title "On embedded page on this page says".

https://www.w3schools.com/jsref/tryit.asp?filename=tryjsref_confirm

Murali
  • 43
  • 4
  • No. You can't customize the native one. – gforce301 Jan 10 '20 at 04:35
  • https://stackoverflow.com/questions/1905289/how-to-edit-a-javascript-alert-box-title – Neha Jan 10 '20 at 04:35
  • 1
    Does this answer your question? [How to edit a JavaScript alert box title?](https://stackoverflow.com/questions/1905289/how-to-edit-a-javascript-alert-box-title) – Jay Jan 10 '20 at 04:52

2 Answers2

2

No, there isn't. You must create your own custom confirmation modals/popups (or use an existing library like https://jqueryui.com/dialog/) if you want to fine-tune anything other than the message displayed.

Yusef
  • 306
  • 1
  • 5
0

No, there is no such method to do that.

You can create your own modal/confirm dialog.

Or you can use angular these packages

ngx-dialogs

ngx-simple-modal

Fahad Hassan
  • 781
  • 10
  • 20