Question

I would like to know how i would replace my onblur / onfocus HTML code with a Javascript function and also perform the same technique to a select option.

Code example:

<table>

<tr><td>

 <label  for="firstname">*Firstname:</label>
     <input type="text" name="udetail" id="firstname" value="(e.g. John)" 
     onblur="if(this.value == '') { this.style.color='#999'; this.value='(e.g. John)'} 
     {this.style.border='1px #bbb solid'}" onfocus="if (this.value == '(e.g. John)') 
     {this.style.color='#000'; this.value=''}" tabindex="1" />

 </td></tr>



  <tr><td>

     <label for="where">*How did you hear about us:</label>
 <select size="1" name="udetail" id="where" class="input"  
     tabindex="7" />
                                        <option value="blank">Select</option>                        
                                        <option value="ampdj">AMPdj</option>
                                        <option value="bing">Bing</option>
                                        <option value="google">Google</option>                  
                                        <option value="pastfunction">Past function</option>
                                        <option value="recomended">Recomended</option>
                                        <option value="yell">Yell</option>
                                        <option value="other">Other</option>                                            
  </select>                                                                                                                                    

  </td></tr>                      

  </table>

Thanks, Scott

Was it helpful?

Solution

If you are not strictly forced to support old browsers in such minor ui elements, I would recommend using HTML5 placeholder attribute of input tag:

<input type="text" placeholder="(e.g. John)" />
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top