funcunit
Version:
<!-- @hide title
25 lines (23 loc) • 840 B
HTML
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Untitled Document</title>
</head>
<body>
<h1>Scroll Test</h1>
<div id="mainscrollingarea">
<div id='scrolldiv' style='width:100px;height:200px;overflow-y:scroll;' tabindex='0'>
<div id='innerdiv' style='width:500px; height:1000px;'><a id="scrollme" href='javascript://'>click to scroll</a></div>
</div>
<script src="../node_modules/steal/steal.js">
var $ = require("funcunit/browser/jquery");
$(function(){
$('#innerdiv').click(function(){
$('#scrolldiv').scrollTop(100);
$('#scrolldiv').scrollLeft(100);
});
});
</script>
</body>
</html>