Hide or display a tag
undisplay.Rd
Hide or display a tag
See also
Other golem:
enurl()
,
is_shiny.tag()
,
jq_hide()
,
list_to_li()
,
list_to_p()
,
make_action_button()
,
rep_br()
,
tagRemoveAttributes()
,
with_red_star()
Other ui:
acc_list()
,
add_sass()
,
box_list()
,
bs4Alert()
,
bs_extract_status()
,
bs_statuses
,
col_10()
,
col_11()
,
col_12()
,
col_1()
,
col_2()
,
col_3()
,
col_4()
,
col_5()
,
col_6()
,
col_7()
,
col_8()
,
col_9()
,
col_auto()
,
copyright()
,
css_props()
,
dynamic_row()
,
enurl()
,
fa_arrow_icon()
,
icon_sb()
,
infoIcon()
,
jq_hide()
,
list_to_li()
,
list_to_p()
,
make_action_button()
,
make_columns()
,
rep_br()
,
tagRemoveAttributes()
,
ui_row()
,
ui_tabs()
,
with_red_star()
Examples
## Hide
a <- shiny::tags$p(src = "plop", "pouet")
undisplay(a)
#> <p src="plop" style="display: none;">pouet</p>
b <- shiny::actionButton("go_filter", "go")
undisplay(b)
#> <button id="go_filter" type="button" class="btn btn-default action-button" style="display: none;">go</button>