with this code read "pnotify-no-title" and after click show Check Text with bg-primary Class; now i need after one click show Check text with bg-primary and after next click show check2 text with bg-primary2 class and again after next click show check text with bg-primary class
$('#pnotify-no-title').on('click', function () {
new PNotify({
text: 'Check',
addclass: 'bg-primary'
});
});