Whatever you do in the admin area will be saved instantly, and you can see the result by hitting the Preview button in the upper right corner. However, your changes will not be visible to your website visitors until you klick Publish.
To integrate RemoteKVM into your website, please copy these code snippets in the appropriate places:
1. Between <head> and </head>:
<link rel="stylesheet" media="screen, projection" href="/typeshow/css/kvm.css" type="text/css" />
<script src="/typeshow/js/jquery.js" type="text/javascript" charset="utf-8"></script>
<script src="/typeshow/js/jquery.kvm.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript" charset="utf-8">
$(document).ready(function() {
$("#RemoteKVM").kvm({
"folder" : "/kvm"
});
});
</script>
2. In the <body>, at the place where RemoteKVM will live:
<div id="RemoteKVM"></div>