$(document).on("pageinit", function()
{
if ($('iframe').length > 0) {
window.addEventListener('orientationchange', function(){
plWidthHeight(screen.width, screen.height);
});
plWidthHeight(ww, wh);
}
}
function plWidthHeight(width, height) {
height = (width > height ? (width / 2.4) : (width / 1.8));
//$('#plx iframe').css({'width': width + 'px', 'height': height + 'px'});
$('#plx iframe').attr('width', width).attr('height', height);
}
kodları kendi temana göre düzenlersen iframe boyutunu ayarlayabilirsin.