PHP beginner |
|
Je moet gebruik maken van onFocus en onBlur (binnen de input-tags).
Voorbeeld:
<input type="text" name="tekst" onFocus="this.style.backgroundColor='#EFEFEF'" onBlur="this.style.backgroundColor='#F7F7F7'" />
<input type="text" name="tekst" onFocus="this.style.backgroundColor='#EFEFEF'" onBlur="this.style.backgroundColor='#F7F7F7'" />
|