26 lines
679 B
HTML
26 lines
679 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
|
|
<title>3DS Test</title>
|
|
|
|
<meta name="description" content="3DS web test">
|
|
<meta name="author" content="Ryan Westphal">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<link href="../css/surii.css" rel="stylesheet" type="text/css" />
|
|
</head>
|
|
<body class="skinnyscroll">
|
|
<div id="jquerytest" style="background: green; padding: 48px;">
|
|
</div>
|
|
<script type="text/javascript" src="../js/jquery-1.10.2.min.js"></script>
|
|
<script type="text/javascript">
|
|
$(function () {
|
|
window.scrollTo(39, 218);
|
|
$("#jquerytest").html("o hai jQuery");
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|