Skip to content

Instantly share code, notes, and snippets.

@neodigm
Last active December 8, 2019 03:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save neodigm/20e8667064562688ee9c0befce969c96 to your computer and use it in GitHub Desktop.
Save neodigm/20e8667064562688ee9c0befce969c96 to your computer and use it in GitHub Desktop.
Toggle brand
// JavaScript
[].slice.call( document.querySelectorAll(".js-mybutton") ).filter( function( _e ){
_e.addEventListener("click", function( e ){
document.body.dataset.brand = ( document.body.dataset.brand == "LS" ) ? "LTD" : "FF";
}, true);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment