remove_cookie | R Documentation |
Instruct the user's browser to remove a cookie via JavaScript.
remove_cookie(cookie_name, session = shiny::getDefaultReactiveDomain())
cookie_name |
The name of the cookie. Can contain any US-ASCII characters except for: the control character, space, a tab, or separator characters like ( ) < > @ , ; : \ " / [ ] ? = { }. |
session |
Shiny session in which the cookies can be found (the default should probably always be used). |
A call to session$sendCustomMessage()
which removes the targeted
cookie.
server <- function(input, output, server) {
shiny::observeEvent(
input$button_that_removes_cookie,
remove_cookie("my_cookie")
)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.