24 lines
523 B
R
24 lines
523 B
R
% Generated by roxygen2: do not edit by hand
|
|
% Please edit documentation in R/htmlRemoveAttributes.R
|
|
\name{htmlRemoveAttributes}
|
|
\alias{htmlRemoveAttributes}
|
|
\title{Remove attributes from an HTML element}
|
|
\usage{
|
|
htmlRemoveAttributes(el, ...)
|
|
}
|
|
\arguments{
|
|
\item{el}{The element to remove the attributes from}
|
|
|
|
\item{...}{The attribute names to be removed}
|
|
}
|
|
\value{
|
|
The modified element
|
|
}
|
|
\description{
|
|
Remove attributes from an HTML element
|
|
}
|
|
\examples{
|
|
x <- shiny::icon("wrench")
|
|
htmlRemoveAttributes(x, "aria-label")
|
|
}
|