Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Custom alert and confirm box in jquery [closed]

Is there any alert and confirm dialog available in jquery with custom title and custom content in it. I have searched many sites but cannot find appropriate. Any site link or any content are appreciable.

like image 670
Kitty Avatar asked Jul 15 '13 07:07

Kitty


2 Answers

I made custom messagebox using jquery UI component. Here is demo http://jsfiddle.net/eraj2587/Pm5Fr/14/

You have to pass just the parameters like caption name, message, button's text. You can specify trigger function on any button click. This will helpful for you.

like image 58
Rajaram Shelar Avatar answered Oct 30 '22 15:10

Rajaram Shelar


Try using SweetAlert its just simply the best . You will get a lot of customization and flexibility.

Confirm Example

sweetAlert(
  {
    title: "Are you sure?",
    text: "You will not be able to recover this imaginary file!",
    type: "warning",   
    showCancelButton: true,   
    confirmButtonColor: "#DD6B55",
    confirmButtonText: "Yes, delete it!"
  }, 
  deleteIt()
);

Sample Alert

like image 28
Akhil R J Avatar answered Oct 30 '22 16:10

Akhil R J