cheatsheet.js 462 B

123456789101112131415
  1. $(function() {
  2. $("section ul li a").click(function() {
  3. var link = $(this).attr("href");
  4. $("#content-iframe div").append("<iframe style='width:100%; height:100%; position:absolute; top:0; left:0;' src='"+link+"'></iframe");
  5. $(".wrapper-iframe").show();
  6. return false;
  7. });
  8. });
  9. $(function() {
  10. $(".close-iframe").click(function() {
  11. $(".wrapper-iframe").hide();
  12. $("#content-iframe div").empty();
  13. });
  14. });