(function( $ ){
$.fn.required = function(texto_msg='',titulo_msg='',footer_msg=''){
let getvalue = $(this).val();
if(getvalue.length < 1){
if(texto_msg){
emite_alert_value(texto_msg,titulo_msg,footer_msg)
}else{
emite_alert()
}
}
}
let emite_alert_value = async function(texto_msg,titulo_msg,footer_msg){
const { value: ipAddress } = Swal.fire({
icon: 'error',
title: titulo_msg,
text: texto_msg,
footer: footer_msg,
}).then(function(){
$(this).focus()
}
)
}
let emite_alert = async function(texto_msg,titulo_msg,footer_msg){
const { value: ipAddress } = Swal.fire({
icon: 'error',
title: 'Ops !!',
text: 'Todos os campos são de preenchimento obrigatório, verifique e tente novamente.',
footer: footer_msg,
}).then(function(){
this.focus()
}
)
}
})( jQuery )