Guest User

Untitled

a guest
Jul 18th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. window.addEvent('domready', function()
  2. {
  3. // Hides specification and shows description
  4. $('tab_desc').addEvent('click', function()
  5. {
  6. $('desc').show();
  7. $('spec').dispose();
  8. });
  9. // Hides description and shows specification
  10. $('tab_spec').addEvent('click', function()
  11. {
  12. $('spec').show();
  13. $('desc').dispose();
  14. });
  15. });
Add Comment
Please, Sign In to add comment