
Suppose you have a user login panel which shows two input text field, one for username & another for password. Now you don’t wanna use level for this input box. Then What!!!!!!!
Simply show text or image inside input box.
Here is the code…..
<form action="#" method="post">
<input name="login_username" value="email" type="text" onfocus="if(this.value=='email') this.value='';" onblur="if(this.value=='')...