Skip to content

Instantly share code, notes, and snippets.

@bekapod
Created February 28, 2017 09:58
Show Gist options
  • Save bekapod/436063b85db490f95a8f4b81c9bae40f to your computer and use it in GitHub Desktop.
Save bekapod/436063b85db490f95a8f4b81c9bae40f to your computer and use it in GitHub Desktop.
Toggle LTR/RTL dir
if (document.querySelector('html').getAttribute('dir') == 'rtl') {
document.querySelector('html').setAttribute('dir', 'ltr');
} else {
document.querySelector('html').setAttribute('dir', 'rtl');
}
javascript:(function()%7Bif%20(document.querySelector('html').getAttribute('dir')%20%3D%3D%20'rtl')%20%7Bdocument.querySelector('html').setAttribute('dir'%2C%20'ltr')%3B%7D%20else%20%7Bdocument.querySelector('html').setAttribute('dir'%2C%20'rtl')%3B%7D%7D)()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment