HTML elements that bind to selections
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | input_slider(name = NULL, min, max, step, init = NULL)
input_radio(name = NULL, choices, init = NULL)
input_select(name = NULL, choices, init = NULL)
input_textbox(init = NULL, ...)
input_checkbox(init = NULL, ...)
input_color(init = NULL, ...)
input_colour(init = NULL, ...)
input_date(init = NULL, ...)
input_datetime(init = NULL, ...)
input_month(init = NULL, ...)
input_week(init = NULL, ...)
|
name |
Name of the HTML input. |
min, max |
Minimum and maximum values. |
step |
Incremental step. |
init |
An initial value. |
choices |
A (named) vector of options. |
... |
Not sure. |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.