Mine
public text v1 · immutablefunction edit () {
// alert ("si entro pero no tengo ni idea de que conio estoy haciendo");
// alert (document.getElementById('HeroeTitle').value);
if(document.getElementById('HeroeTitle').value == ""){
alert("Please enter a title");
document.getElementById('HeroeTitle').focus();
return false;
}
if(document.getElementById('HeroSummary').value == ""){
alert("Please enter a Summary");
document.getElementById('HeroSummary').focus();
return false;
}
return true;
}