Good afternoon!
I have an iframe and it opens a system where you need to use F5 to enter.
I've tried some things but it did not work ... It does not interact with what's in the iframe.
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">
<style>
iframe {
/* Set the width of the iframe the size you want to transform it FROM */
width: 640px;
height: 525px;
/* apply the transform */
-webkit-transform:scale(0.25);
-moz-transform:scale(0.25);
-o-transform:scale(0.25);
transform:scale(0.25);
/* position it, as if it was the original size */
position: absolute;
left: 100px;
top: -14px;
zoom:75%;
}
</style>
<head>
<iframe src ="Meu_Site"/>
</head>
<body>
$('body').keypress(function(e){
alert(e.which);
if(e.which == 113)
{
e.codepress == 13
}
});
</body>
</html>