var jc = $.confirm({ title: 'awesome', onContentReady: function(){ // this === jc } }); jc..setContent("new content"); // not working jc.setContentAppend("content added"); // not working
var jc = $.confirm({
title: 'awesome',
onContentReady: function(){
// this === jc
}
});
jc..setContent("new content"); // not working
jc.setContentAppend("content added"); // not working