label.content String|Function (default: "")

Sets the inner HTML of the label.

Example - create a label from a string

<textarea id="description"></textarea>
<script>
    $("#description").kendoTextArea({
            label: {
                content: "First name"
            }
    })
</script>

The function context (available through the keyword this) will be set to the widget instance.

Example - create a label from a function

<textarea id="description"></textarea>
<script>
    $("#description").kendoTextArea({
            label: {
                content: function() {
                    return "First name";
                }
            }
    })
</script>
In this article