Index

"Buttons" Category

Selectable Button

A button with a selectable state; something that can be turned on or off, but performs an associated action. A group of these is equivalent to the material components' Toggle Button.

Demo

Code

<button id="button" class="button button--selectable">Select Me</button>
<script>
	document.getElementById("button").addEventListener("click", function() {
		this.getAttribute("selected") ? this.removeAttribute("selected") : this.setAttribute("selected", true);
	});
</script>
code View Source CSS
This site may do shady things with cookies and stuff because it's evil. Please don't read my privacy policy. close