wboykinm

closing the menus of olhttp

Sep 15th, 2011
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.68 KB | None | 0 0
  1. *************in the <head>******************
  2.  $(function() {
  3.         $('.close_details').live('click', function() {
  4.             $('#details').hide();
  5.         $('#other_details').hide();
  6.         });
  7.     $('.close_feature_details').live('click', function() {
  8.         $('#featuredetails_wrap').hide();
  9.     });
  10.     });
  11.  
  12. *************in the <body>*****************
  13.  
  14. <span id="drag_handle3" class="drag_box_handle">click here to move <span class="close_feature_details">close</span></span>
  15. <div id="featuredetails">
  16. </div>
  17.  
  18. <div id="details" style="display:none;">
  19. <span id="drag_handle1" class="drag_box_handle" >click here to move <span class="close_details">close</span></span>
  20.  
  21.  
  22. etc . . .
Advertisement
Add Comment
Please, Sign In to add comment