Guest User

Untitled

a guest
May 28th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. document.observe('dom:loaded', initShowWindow);
  2. function initShowWindow(e) {
  3. Event.observe('general_information_tab', 'click', function(e) {
  4. hideWindow('profile_information');
  5. });
  6. };
  7.  
  8. function hideWindow(id) {
  9. console.log(id);
  10. $(id).hide();
  11. // this.show();
  12. }
Add Comment
Please, Sign In to add comment