Files
AVSDevR.HTMLUtils/man/htmlRemoveAttributes.Rd
Craig Williams 6d3843a92b Package with an initial set of functions added
NOTE: Not all tests have been written yet!
2026-01-22 15:59:54 +00:00

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")
}