Advertisement
gabs_avila

Untitled

Feb 26th, 2020
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title></title>
  5. <script type="text/javascript" src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.4.1.min.js"></script>
  6. <style type="text/css">
  7. #cir{
  8. width: 150px;
  9. height: 150px;
  10. border-radius: 50%;
  11. background-color: green;
  12. }
  13. .squ{
  14. width: 150px;
  15. height: 150px;
  16. margin: 10px;
  17. background-color: red;
  18. }
  19. </style>
  20.  
  21. </head>
  22. <body>
  23.  
  24. <div id="cir"></div>
  25. <p> this is some text</p>
  26. <iframe src="https://edition.cnn.com/"></iframe>
  27. <script type="text/javascript">
  28.  
  29. $("#cir").hover(function() {
  30. $("iframe").attr("src","https://www.ecowebhosting.co.uk");
  31. });
  32. </script>
  33. </body>
  34. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement