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?
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?
Copyright © 2021 Jogjafile Inc.
Consider you have created 4 persistent logs,
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();