Does anyone know the code for forcing an entry in a custom text field?
I have the code for forcing a selection from drop downs like
Code:
if (document.getElementById('po447').selectedIndex == 0)
{ alert('Please select a Liner Pattern'); return false;
}
else return true;
But how do I do it for a custom text field?