Make WolframAlpha iframe redirect to website - html

So I added WolframAlpha as a frame into a webpage (deleted the rest for the time being) and was wondering if there was a way to have search results open on the actual WA website.
ex. If I type 1+1 it will open me https://www.wolframalpha.com/input/?i=1%2B1
<!DOCTYPE html>
<html style="height: 100%;">
<head>
<style type="text/css">
body {
overflow:hidden;
}
</style>
</head>
<body style="height: 100%;margin:0;padding:0">
<iframe src="https://www.wolframalpha.com/" scrolling="no" frameborder="0" style="width: 50%; height: 100%;"></iframe>
</body>
</html>
Currently it just opens the search result on the page

No.
Only Wolfram Alpha can control the target of their links and forms.

Related

IFrame wont go fullscreen

so i'm making a shell shockers site for my friends in school, and it wont go fullscreen
this is the code iv used. whats wrong??? (I'm sorry if its a simple fix but I used what I saw online to allow this and it doesn't work)
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<iframe src="https://playminigames.ru/en/embed/shell-shockers" style="width: 1200px; height: 700px;" frameborder="0" allow="fullscreen" object-fit:screen;></iframe>
</body>
</html>

embedd webpage into html document not working

I am trying to embedd a webpage from a cisco satellite device into a div tag of my webpage but I am getting the following problem
The page loads properly with the logon screen but as soon as I enter the login details it does not login byut instead stays on the login screen. I have tried both div and Iframe and both give me the same results. However when i access the device directly on IE or Chrome it works fine. The problem is only within my iframe or div.
My samle code is below however since you dont have access to the device you may not be able to see it working.. A shot in the dark here just asking you all to please give me some stuff to try out
<!<doctype html>
<html lang="en">
<body>
<div style="margin: 0 auto; width: 100%; height: 100%;">
<object type="text/html" data="http://192.168.10.107/"
style="width: 100%; height: 100%; margin: 1%;"> </object>
</div>
</body>
</html>
I also tried this with iframes as under but that also failed to work
<html>
<iframe src="http://192.168.10.107" sandbox ="allow-same-origin allow-scripts allow-popups allow-forms" width=100% height =100%></iframe>
</html>
Here I have a page that is like the one you want I guess.
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>MyTitle</title>
</head>
<frameset rows="0,*" border="0">
<frame name="header" scrolling="no" noresize target="main">
<frame name="main" src="http://192.168.10.107/">
<noframes>
<body>
</body>
</noframes>
</frameset>
</html>

Getting an App running in an Iframe at full size/width

Trying to insert an AngularJS app into an IFrame, by default it only appears squashed and small.
With some tweaks it shows full with but not full height (even if height is set at 100%)
<head>
<title>My Ionic App HTML Webpage Title</title>
<style>
html,body{
height:100%;
}
</style>
</head>
<body style="margin:0px;padding:0px;overflow:hidden">
<iframe src="http://example.com/myapp/#/tab/chats" frameborder="0" style="overflow:hidden;height:100%;width:100%" height="100%" width="100%"></iframe>
</body>
EDITED & WORKING
It was the CSS that I have placed in the head tags that sorted it
html,body{
height:100%;
}

html <object> being clipped although height=100%

I am using the following code to embed a pdf in a webpage:
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<object data="http://fluencycontent-schoolwebsite.netdna-ssl.com/FileCluster/StGeorgesBritishInternational/Mainfolder/Admissions/1407-Application-Form_Admissions.pdf" type="application/pdf" width="100%" height="100%" internalinstanceid="26"><p>This browser does not support PDFs. Please download the PDF to view it: Download PDF.</p></object>
</body>
</html>
However the embedded document will be clipped as the height will be set to a value that wil clip the object. Forcing size in pixels will fix the problem. How is that?
Make you tests here as jsfiddle will fail to deal with <object>
The page itself needs a size assigned to it.
set the style appropriately for your page.
Try this:
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<style>
*{height: 100%;width: 100%}
</style>
</head>
<body>
<object data="http://fluencycontent-schoolwebsite.netdna-ssl.com/FileCluster/StGeorgesBritishInternational/Mainfolder/Admissions/1407-Application-Form_Admissions.pdf" type="application/pdf" width="100%" height="100%" internalinstanceid="26"><p>This browser does not support PDFs. Please download the PDF to view it: Download PDF.</p></object>
</body>
</html>

Is it a way to correct Internet Explorer view of an absolute iframe?

I have an iframe used as an index file to hide a url of next website.
<iframe style="position:absolute; top:0px; left:0px; " src=" http://..." width="100%" height="100%" frameborder="0" scrolling="auto"></iframe>
This all works in all known to me browsers instead of Internet Explorer (checked on 9). Is it a simple way to make it visible correctly?
First of all mixing html attributes with css is nasty thing.
Anyway this should work flawlessly if you are looking for fullscreen iframe:
CSS:
/* notice you actually don't need absoulte positioning */
body,html,iframe {
margin:0;
padding:0;
width: 100%;
height: 100%;
}
body,html {
overflow: hidden;
}
HTML:
<html>
// add head, css
<body>
<iframe src=""></iframe>
</body>
</html>
Unfortunately, not that I've found. Instead, you would need to use JavaScript to monitor window size.
Or just use a regular frame:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
<title>Page title</title>
</head>
<frameset rows="*">
<frame src="http://..." />
</frameset>
</html>