Forum Moderators: open
In my current project i am facing an issue which is related to the iframe.
i am using an iframe with src=http://exmaple.com. when i logged in by using emailid and pass instead of opening my inbox in that iframe all the things comes to the parent window and the whole logic goes off..
any pointer or help for the same is higly appreciable
below is the sample code
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<body>
<div style="border:1px solid blue; height:350px; width:450px;">
<iframe src="http://www.gmail.com" style="width:450px; height:350px;">
dfsfd
</iframe>
</div>
</body>
</html>