Advertisement
Guest User

Untitled

a guest
Mar 26th, 2015
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. <div class="box">
  2. <div class="item" data-category="#music"> CLICK </div>
  3. </div>
  4.  
  5. <div class="box">
  6. <div class="item" data-category="#movies"> CLICK </div>
  7. </div>
  8.  
  9. ...etc ...
  10.  
  11. $('.box').click(function() {
  12. $('#dialogbox').show();
  13. });
  14.  
  15. <div id="music"> ALL INFORMATION ABOUT MUSIC </div>
  16. <div id="movies"> ALL INFORMATION ABOUT MOVIES </div>
  17.  
  18. ... etc ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement