Advertisement
Guest User

Untitled

a guest
Feb 28th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. if (document.querySelector('html').getAttribute('dir') == 'rtl') {
  2. document.querySelector('html').setAttribute('dir', 'ltr');
  3. } else {
  4. document.querySelector('html').setAttribute('dir', 'rtl');
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement