I have been trying to make jquery scroll text in a textbox using a button click but it does not work in IE, Chrome, or Firefox.
I would like my textbox manually to scroll down on click of the button.
<!DOCTYPE html>
<html>
<head>
<script src="http://localhost:62240/Scripts/jquery-2.1.1.js"></script>
<script>
x = 0;
$(document).ready(function () {
$("div").scroll(function () {
$("span").text(x += 1);
});
$("button").click(function () {
$("div").scroll();
});
});
</script>
</head>
<body>
<p>Try the scrollbar in the div</p>
<div style="border:1px solid black;width:200px;height:100px;overflow:scroll;">
In my younger and more vulnerable years my father gave me some advice that I've been turning over in my mind ever since.
<br><br>
'Whenever you feel like criticizing anyone,' he told me, just remember that all the people in this world haven't had the advantages that you've had.'
</div>
<p>Scrolled <span>0</span> times.</p>
<button>Trigger scroll event for the window</button>
</body>
</html>
.scroll()functionality: api.jquery.com/scroll$("div").scroll()to cause the div contents to move, i.e. scroll?