Does anyone know how to reset the border color of an input control once you have modified it using javascript? Useful for validation by highlighting fields that have incorrect or invalid data in them etc.
E.g. changing the border:
document.getElementById('myinput').style.border = '1px solid red';
how to reset? the next line just removes the border completely...
document.getElementById('myinput').style.border = '';
if I reset the border color back to a particular color (e.g. black or grey etc), it may look strange in some browsers/operating systems that sort of 'theme' the controls...
thanks heaps!