Hello Forums !!
I had following script for marking the fields with certain color border and clearing that color border , preserving the fields original border color.
Whats my problem ?Code:<!-- Javascript --> <script language="javascript"> function FMark(){ document.forms['frm_mark'].test_field.style.border = "1px solid #ff0000"; } function FClear(){ document.forms['frm_mark'].test_field.style.border = "none"; } </script> <!-- HTML --> <form name="frm_mark" action="#" method="get"> <input type="text" name="test_field" style="border: 1px solid #0066FF" /> <input type="button" value="Mark" onclick="FMark();"/> <input type="button" value="Clear" onclick="FClear();"/> </form>
- I am able to mark the field but also able to clear that marked one but couldnt preserve the existing border color
What I want ?
- I want to clear the marked border color preserving the existing border color ie #0066FF
Any Suggestion and Help are warmly welcome
Thanks in advance to all of you



Reply With Quote

Bookmarks