CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    Aug 2006
    Posts
    12

    text box content style with mouseover effect

    Hi,

    Any body know how to apply mouse over effect in textbox value . In that text box value i need close button also. Thank you

  2. #2
    Join Date
    May 2002
    Posts
    10,943

    Re: text box content style with mouseover effect

    [ moved ]
    If the post was helpful...Rate it! Remember to use [code] or [php] tags.

  3. #3
    Join Date
    May 2002
    Posts
    10,943

    Re: text box content style with mouseover effect

    For future reference, this is a client-side issue, not a server-side problem.

    So you want to change the value of a textbox onmouseover...
    Code:
    <input type="text" name="test_name_1" id="test_id_1" onmouseover="this.value='MOUSE OVER!!!'" />
    If the post was helpful...Rate it! Remember to use [code] or [php] tags.

  4. #4

    Re: text box content style with mouseover effect

    Do you want something like a tooltip over your text box?
    David Domingues at [email protected]. Feel free to visit http://www.webrickco.com

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured