Advertisement
Guest User

Untitled

a guest
Aug 18th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. //HTML
  2. <a class="btn-agent" href="javascript:void(0);">Agent View</a>
  3. <a class="btn-client" href="javascript:void(0);">Client View</a>
  4.  
  5.  
  6. // CSS
  7. .client .agent, .client .arrow {
  8. display: none;
  9. }
  10.  
  11. .client .upper {
  12. height: 100vh;
  13. }
  14.  
  15. //JS
  16. $('.btn-client').on('click', function (){
  17. $('body').addClass('client');
  18. });
  19.  
  20. $('.btn-agent').on('click', function (){
  21. $('body').removeClass('client');
  22. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement