Form Example Plugin

联合创作 · 2023-10-02 15:16

Populate form fields with example text that disappears on focus.

Example Usage

Simple usage:

$('input#name').example('Bob Smith');

Using a custom class name instead of the default example:

$(':input').example('Fill me in!', {className: 'special_example'});

New in 1.3: specifying the example text with a callback:

$('input[@title]').example(function() {
    return $(this).attr('title');
});

Options

Supports one option:

  • className: Sets the class name of the example text for use in a stylesheet (by default it is example).

This plugin is fully compatible with the Metadata plugin, allowing you to set the example text via the example property and the standard className property in elements themselves.

<input type="text" class="{example: 'Name here', className: 'special'}">

Please see README.markdown for further information.

This plugin is compatible with jQuery 1.1 and newer.

Dual-licensed under the BSD and GPL licenses.

浏览 5
点赞
评论
收藏
分享

手机扫一扫分享

编辑
举报
评论
图片
表情
推荐
点赞
评论
收藏
分享

手机扫一扫分享

编辑
举报