How can i add html elements on alertify.JS prompt dialog?

1.3k Views Asked by At

I need to add more input elements on alertify dialog box. What is the best way of doing that ?

1

There are 1 best solutions below

0
On

i did add extra inputs into text

var text = '<input id="extra-field" />';

and then by jQuery get values

alertify.confirm(text, function(e){
   if(e){
       var extra = $('#extra-field').val();
       ...
   });

for me isn't a problem, but the compoments are not in the same layout. Anyway i hope it will helps to you. Have a nice day.