Close alertify.js log from code

352 Views Asked by At

I'm using the alertify.js library to create a persistent log that cannot be clicked on to hide.

var log = alertify.closeLogOnClick(false).delay(0).log("Hello world!");

How can I close this log I've just created from within my JavaScript code?

1

There are 1 best solutions below

0
On

Consider you have created 4 persistent logs,

var log = alertify.closeLogOnClick(false).delay(0).log("Hello world!");
var log1 = alertify.closeLogOnClick(false).delay(0).log("Hello world1!");
var log2 = alertify.closeLogOnClick(false).delay(0).log("Hello world2!");
var log3 = alertify.closeLogOnClick(false).delay(0).log("Hello world3!");

This will create 4 log,

To clear a specific log, some kind of if condition if you want to.

First to list out all the logs, $(".alertify-logs")

running this you will all the items, $(".alertify-logs").children and check with the log text to remove it.

For eg: $(".alertify-logs").children[0].innerText == "Hello world!" then $(".alertify-logs").children[0].remove();