Is there a way for an iframe to appear on hover.
This is what i have:
<div id="sub1" onmouseover="<iframe src="$('#countdown').load(' #countdown');>some text</div>
Is there a way for an iframe to appear on hover.
This is what i have:
<div id="sub1" onmouseover="<iframe src="$('#countdown').load('https://days.to/22-january/2017 #countdown');>some text</div>
Share
Improve this question
edited Nov 15, 2016 at 17:00
user5306470
asked Nov 15, 2016 at 15:43
matthew smatthew s
431 gold badge1 silver badge3 bronze badges
1
-
1
The syntax for
onmouseover
in HTML is<element onmouseover="myScript">
. Learn more about it here. – Anthony Commented Nov 15, 2016 at 16:00
2 Answers
Reset to default 7No JS/jQ needed just some CSS transitions and a :hover
pseudo-class`
SNIPPET
#ifrm1 {
opacity: 0;
transition: opacity 1.5s linear;
}
#trig1:hover + iframe {
opacity: 1;
transition: opacity 1.5s linear;
}
<a href='#/' id='trig1'>HOVER</a>
<iframe id='ifrm1' name='ifrm1' src='https://days.to/until/christmas'></iframe>
Use jQuery! Sorry for the ugly script, I'm sure you can do better :)
$('#idToHover').hover(function(){
$('#idModal').css("display", "block");
})
$('#idToHover').mouseout(function(){
$('#idModal').css("display", "none");
})
#idModal{
display: none;
}
<html>
<head>
<script
src="https://code.jquery./jquery-3.1.1.slim.js"
integrity="sha256-5i/mQ300M779N2OVDrl16lbohwXNUdzL/R2aVUXyXWA="
crossorigin="anonymous"></script>
</head>
<body>
<div id="idToHover"> Hello World </div>
<div id="idModal">
<iframe src="http://www.w3schools."></iframe>
</div>
</body>
</html>