Home  >  Article  >  Web Front-end  >  jQuery code to automatically set iframe size_jquery

jQuery code to automatically set iframe size_jquery

WBOY
WBOYOriginal
2016-05-16 17:22:411033browse
Copy code The code is as follows:



Copy code The code is as follows:

/*Auto Width*/
global.autoWidth = function () {
//global_main
$(".global_main"). height($(window).height() - $(".global_header").eq(0).outerHeight());
$('.global_main').width($(window).width() - $('.global_slide').eq(0).outerWidth()).show();
};
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn