Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. $(function(){
  2. alert('Hi');
  3. $('iframe[title=TestPageResult]').css("height", 200);
  4. });
  5.  
  6. <style>
  7. .frameHeight {
  8. height: 100px !important;
  9. }
  10. </style>
  11. <script>
  12. $(function(){
  13. alert('Hi');
  14. $('iframe[title=TestPageResult]').addClass('frameHeight');
  15. });
  16.  
  17. console.log($('iframe[title=TestPageResult]'));
  18.  
  19. <iframe frameborder="no" height="300px" id="0660Y000004tr0j" marginheight="0" marginwidth="0" name="0660Y000004tr0j" scrolling="no" title="TestPageResult" width="100%"></iframe>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement