i get this error message after echo a status message from php to indicate an alert message generated by Jquery and this is my success conditions
success : function(e){
if(e == '0')
{
alert("inputs are empty");
}
else if(e == '01')
{
alert("this input already exists");
}
else if(e == '1')
{
alert("saved all good");
clearForm(x);
}
else
{
console.log('Unknow Msg : ' + e);
}
}
it used to work fine then i get this kind of message on firebug
NS_ERROR_NOT_AVAILABLE: alert("saved all good");