<html>
<head>
<meta charset="utf-8">
</head>
<body>
<script>
function short(url) {
document.getElementById("shortUrl").value = url;
};
</script>
<input type="text" id="shortUrl" />
<script src="http://shrt.org.ua/--?url=http://vk.com&s=goo.gl&callback=short"></script>
<script>
document.getElementById("shortUrl").onclick = function() {
this.select();
}
</script>
</body>
</html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<div id="url"></div>
<script>
function short(url) {
document.getElementById("url").innerHTML= url;
};
</script>
<script src="http://shrt.org.ua/--?url=http://vk.com&s=goo.gl&callback=short"></script>
</body>
</html>