Advertisement
Guest User

Untitled

a guest
Apr 24th, 2014
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;" />
  6. <title>kaizokuPROJECT Mobile: index</title>
  7. <style>
  8. body {
  9. padding: 0;
  10. margin: 0;
  11. }
  12. </style>
  13. </head>
  14. <body>
  15. <iframe src="https://www.kaizokuproject.com.br/app/" id="frame" width="100%" height="" frameborder="0" scrolling="yes"></iframe>
  16. <script src="js/jquery.js"></script>
  17. <script>
  18. function setFrameHeight() {
  19. var size = $(window).height();
  20. $("#frame").attr("height", size);
  21. return true;
  22. }
  23.  
  24. $(document).ready(function() {
  25. setFrameHeight();
  26. });
  27.  
  28. $( window ).resize(function() {
  29. setFrameHeight();
  30. });
  31. </script>
  32. </body>
  33. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement