Guest User

Untitled

a guest
Oct 16th, 2016
24
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="de">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <title>Bootstrap 101 Template</title>
  8. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
  9. <style>.fuu{padding:1em 2em;margin:2em;background-color:#f90;text-align:center}</style>
  10. </head>
  11. <body>
  12. <h1>Hello, world!</h1>
  13. <div id="z2s1" class="fuu">z2s1</div>
  14. <div id="z4s2" class="fuu">z4s2</div>
  15. <script>
  16. $(document).ready(function(){
  17. $.each( ["2","4","6"], function( i, val ) {
  18. var ids = '#z'+val+'s1, #z'+val+'s2';
  19. console.log(ids);
  20. $(ids).click(function(){
  21. alert(this.id);
  22. });
  23. });
  24. });
  25. </script>
  26.  
  27. </body>
  28. </html>
Add Comment
Please, Sign In to add comment