Advertisement
Guest User

Untitled

a guest
May 11th, 2017
283
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Testy</title>
  6. <style type="text/css">
  7. .box{
  8. color: #000000;
  9. padding: 0px;
  10. display: none;
  11. margin-top: 0px;
  12. background-color: #ffffff;
  13. text-align: center;
  14. }
  15.  
  16. </style>
  17. <script type="text/javascript" src="http://code.jquery.com/jquery.min.js"></script>
  18. <script type="text/javascript">
  19. $(document).ready(function(){
  20. $("select").change(function(){
  21. $(this).find("option:selected").each(function(){
  22. var optionValue = $(this).attr("value");
  23. if(optionValue){
  24. $(".box").not("." + optionValue).hide();
  25. $("." + optionValue).show();
  26. } else{
  27. $(".box").hide();
  28. }
  29. });
  30. }).change();
  31. });
  32. </script>
  33. </head>
  34. <body>
  35. <div>
  36. <select>
  37. <option>Wybierz substancje</option>
  38. <option value="1">LSD</option>
  39. </select>
  40. </div>
  41. <div class="1 box">
  42. <a href="http://sin.org.pl" target="_blank">
  43. <img src="https://s14.postimg.org/s15q8k3u9/Untitled-1.jpg" />
  44. </a>
  45. </div>
  46. </body>
  47. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement