Guest User

Untitled

a guest
Jul 18th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. if ($('#'+targetID).find("iframe").width() != 640) {
  2. var nativeWidth = 500;
  3. var nativeHeight = $('#'+targetID).find("iframe").height();
  4. var ratio = nativeWidth/nativeHeight;
  5. var ifvheight = $('#'+targetID).find("iframe").attr("height");
  6. var newHeight = 640/ratio;
  7. $('#'+targetID).find("iframe").height(newHeight);
  8. $('#'+targetID).find("iframe").width(640);
  9. $('#'+targetID).find("iframe").height($('#'+targetID).find("iframe").height() - 100);
  10. }
Add Comment
Please, Sign In to add comment