Implementation of mouse click Text box based on jquery display hidden hint text _jquery

Source: Internet
Author: User

For example, the search box of my website:

When not in use:

After the mouse clicks:

The effect of using jquery is very simple, and here's the code:

Copy Code code as follows:

$ (document). Ready (function () {
var searchbox = $ ("#ctl00_txtSearch");
Searchbox.focus (function () {
if (searchbox.val () = = This.title) {//TextBox control ToolTip property converted to HTML as Title property
Searchbox.val ("");
}
});
Searchbox.blur (function () {
if (searchbox.val () = = "") {
Searchbox.val (This.title);
}
});
Searchbox.blur ();
});

Where #ctl00_txtsearch is the ID of the search box (asp.net can get this ID by ClientID)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.