Skip to content

Instantly share code, notes, and snippets.

@arlolra
Created April 28, 2011 18:31
Show Gist options
  • Save arlolra/946952 to your computer and use it in GitHub Desktop.
Save arlolra/946952 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<textarea id="test">
</textarea>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script>
<script type="text/javascript" src="jquery.caret.js"></script>
<script type="text/javascript">
$(function() {
$('#test').keydown(function () {
console.log($(this).caret());
});
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment