jquery-confirm icon indicating copy to clipboard operation
jquery-confirm copied to clipboard

print the result of the prompt windows just like regular prompt

Open irandoct opened this issue 5 years ago • 0 comments

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

irandoct avatar Jun 06 '19 08:06 irandoct