Is there a way to applique a mask on a Alertify.js
prompt ?
I need to add on a jquery mask
a like this :
$('document').ready(function(){
$('.car_number').mask('(SSS-0000');
});
On an alertify.js
prompt like this :
alertify.prompt( 'test', 'Insert a car number', '', function(evt, value) {
if(value) {
getVal(value);
}
}
, function() {})
}
to get an output like :
PCT-5077
Any help is welcome.