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

The newest version!
///

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

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

    };
}(jQuery));




© 2015 - 2025 Weber Informatics LLC | Privacy Policy