﻿/**
* @author Remy Sharp
* @url http://remysharp.com/2007/01/25/jquery-tutorial-text-box-hints/
*/

(function ($) {
    $.fn.hint = function (blurClass) {
        if (!blurClass) {
            blurClass = 'blur';
        }

        return this.each(function () {
            // get jQuery version of 'this'
            var $input = $(this),
            // capture the rest of the variable to allow for reuse
                title = $input.attr('title'),
                type = ($input.attr('type') == null ? "" : $input.attr('type').toLowerCase()),
                pwdId = $input.attr('id') + '-password',
                $form = $(this.form),
                $win = $(window);

            function remove() {
                if ($input.val() === title && $input.hasClass(blurClass)) {
                    $input.val('').removeClass(blurClass);
                }
            }

            // only apply logic if the element has the attribute
            if (type != "password" && title) {
                // on blur, set value to title attr if text is blank
                $input.blur(function () {
                    if (this.value === '') {
                        $input.val(title).addClass(blurClass);
                    }
                }).focus(remove).blur(); // now change all inputs to title

                // clear the pre-defined text when form is submitted
                $form.submit(remove);
                $win.unload(remove); // handles Firefox's autocomplete
            } else if (type == "password" && title) {
                $input.parent().append('<input id="' + pwdId + '" type="text" name="' + pwdId + '" value="' + title + '" style="' + $input.attr('style') + '" />');

                $('#' + pwdId).addClass(blurClass).focus(function () {
                    $('#' + pwdId).hide();
                    $input.show();
                    $input.focus();
                });

                $input.blur(function () {
                    if ($input.val() === '') {
                        $input.hide();
                        $('#' + pwdId).show();
                    }
                });

                $input.hide();
            }
        });
    };

})(jQuery);

$(function () {
    $('input[title!=""],textarea[title!=""]').each(function () {
        if (typeof($(this).attr('name')) !== 'undefined' && $(this).attr('name').replace(/GridView1/, '') == $(this).attr('name')) {
            $(this).hint();
        }
    });
});
