Virtual Keyboard Playground

https://github.com/Mottie/Keyboard

HTML

<link rel="stylesheet" href="http://mottie.github.com/Keyboard/css/keyboard.css">
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
<script src="https://code.jquery.com/jquery-1.12.2.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<script src="http://mottie.github.io/Keyboard/js/jquery.keyboard.js"></script>
<script src="https://code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<link rel="stylesheet" href="https://code.jquery.com/ui/1.11.4/themes/black-tie/jquery-ui.css">
<p style="height:200px">
  content
</p>
<input type="text" class="form-control" id="test" placeholder="test" autocomplete="off">

JavaScript

$('#test').keyboard({
  layout: 'qwerty',
  usePreview: true,
  position: {
    of: null,
    at2: 'top-100'
  }
});