Feb 3, 2002 #1 elegidito Programmer Joined Jan 19, 2002 Messages 358 is there a way to change the style of an <input type="text"> onMouseOver?...
Feb 3, 2002 2 #2 BigBadDave Programmer Joined May 31, 2001 Messages 1,069 Location EU Like this you mean? : <style type="text/css"> <!-- .normal { background-color: #FFFFFF; } .over { background-color: #999999; } //--> </style> <input type="text" class="normal" onMouseOver="this.className='over'" onMouseOut="this.className='normal'"> Regards Big Bad Dave davidbyng@hotmail.com Upvote 0 Downvote
Like this you mean? : <style type="text/css"> <!-- .normal { background-color: #FFFFFF; } .over { background-color: #999999; } //--> </style> <input type="text" class="normal" onMouseOver="this.className='over'" onMouseOut="this.className='normal'"> Regards Big Bad Dave davidbyng@hotmail.com
Feb 3, 2002 Thread starter #3 elegidito Programmer Joined Jan 19, 2002 Messages 358 kool. thanks. Upvote 0 Downvote
Feb 6, 2002 #4 FengShui1998 MIS Joined Apr 27, 1999 Messages 705 Location US BigBadDave, Thanks for your code, but it only works in IE. Do you have any code for that "other" browser? fegnshui_1998 Upvote 0 Downvote
BigBadDave, Thanks for your code, but it only works in IE. Do you have any code for that "other" browser? fegnshui_1998
Feb 6, 2002 #5 BigBadDave Programmer Joined May 31, 2001 Messages 1,069 Location EU Nope IE Only Regards Big Bad Dave davidbyng@hotmail.com Upvote 0 Downvote
Feb 7, 2002 #6 SashiRaveendran Programmer Joined Nov 6, 2001 Messages 865 Location GB there is a workaround of Netscape 4+ on the following page: http://www.webreference.com/js/column4/workaround.html Upvote 0 Downvote
there is a workaround of Netscape 4+ on the following page: http://www.webreference.com/js/column4/workaround.html