スクロール時に1つのdivが別のdivの上にあるときにアラートを出すにはどうすればよいですか?これが実際の例です 。http://jsfiddle.net/uprosoft/Ek5Gy/267/
アラートを出すために、後を追うjQueryコードが見つかりません。
コード:
HTML
<div id="container">
<div id="div1">test</div>
<br>
<div id="div2"> another test</div>
</div>
CSS
#div1{
background: green;
position: fixed;
width: 100%;
}
#div2{
background: yellow;
position: relative;
width: 100%;
margin-top: 100px;
}
#container{
height: 1000px;
}
JQUERY ???
/* what jquery code goes here? to alert when the yellow div touches the green div upon scroll? */