All Downloads are FREE. Search and download functionalities are using the official Maven repository.

META-INF.resources.butterfaces-ts.butterfaces-multiline-placeholder.jquery.ts Maven / Gradle / Ivy

///

(function ($:any) {
    // extend jQuery --------------------------------------------------------------------
    $.fn.multilinePlaceholder = function () {

        return this.each(function () {
            var $originalElement = $(this);
            var $textarea = $originalElement.find('textarea');
            var placeholder = $textarea.attr('placeholder');
            var multilinePlaceholder = placeholder.replace(/\\n/g, '\n');
            $textarea.attr('placeholder', multilinePlaceholder);
        });

    };
}(jQuery));




© 2015 - 2025 Weber Informatics LLC | Privacy Policy