I have this code:
<html>
<head>
<script>
function funct() {
if (event.keyCode == 37) {
move ttd div 10 px to right
}}
</script>
</head>
<body onkeydown="funct()">
<div id="ttd" style="position: absolute">sal</div>
</body>
</html>
How to move the div with id ttd 10px to the right?
}for the function. You open and close theifbut you failed to close thefunction. – War10ck Feb 11 at 20:49