Jump to content
php.lv forumi

frameset uz ie8


EdgarsK

Recommended Posts

sveiki, problēma sekojoša - uz ie8 nestrādā mans frameset, ko daru nepareizi ?

 

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html>
<head> </head>
<frameset rows="*,0" id="eal">
<frame scrolling="no" src="http://..." name="api" frameborder="0">
<frame src="#" noresize="noresize" scrolling="no" name="dgb" frameborder="0">
</frameset>
</html>

Link to comment
Share on other sites

VVai tiešām nebūs neviena, kas varētu zināt atbildi ? :/

Itkā pagaidām esmu uzgājis kautko derīgu, bet vēljoprojām ielādes process ir kļūdains

 

<html>
<head>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
$(function(){
var $frame = $('<iframe style="width:100%;height:100%" id="iframe">');
$('body').css({'overflow':'hidden','width':'100%','height':'100%','margin':'0px','padding':'0px'}).html($frame);
setTimeout(function(){
var doc = $frame[0].contentwindow.document;
var $body = $('body',doc);
$body.load('http://www....html');
},1);
});
</script>
</head>
<body>
</body>
</html>

Edited by EdgarsA
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...