Custom Content¶
Add custom HTML tags next to fields
General¶
1 2 3 4 5 |
|
Available positions¶
insertAbove()
insertBefore()
insertAfter()
insertBelow()
Available Tags¶
Headings¶
.h1("Heading 1");
- ...
.h6("Heading 6");
Preformatted text (code)¶
.pre("text");
Paragraph¶
.p("text");
Horizontal line¶
.hr();
Alerts¶
.alert("text", Variation.info);
See Variation
Label¶
.label("text", Variation.info);
Div¶
.div("inner HTML");
Span¶
.span("inner HTML");
Examples¶
1 2 3 4 5 6 7 8 9 10 |
|