jquery-confirm
jquery-confirm copied to clipboard
print the result of the prompt windows just like regular prompt
jquery-confirm version: v3.x.x [x] support request Hi, In your demo file, after a successful prompt the client see an alert with the prompt value. I want the prompt result value be printed just like the regular prompt windows.
action: function () {
var name = this.$content.find('.name').val();
if(!name){
$.alert('provide a valid name');
return false;
}
$.alert('Your name is ' + name);
//console.log(name);
}.....
Thanks