I would like you to help me to give css to the alert()
and the confirm()
of javascript, so that my messages are something elegant, I do not want to opt for a modal only for confirmations, so if someone knew how to I realize I would appreciate it.
$("#confirm").click(function(){
var bool=confirm("Seguro de eliminar el dato?");
if(bool){
alert("se elimino correctamente");
}else{
alert("cancelo la solicitud");
}
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<button id="confirm">confirmar eliminacion</button>