Does anybody know how to implement in this form <textarea> ?
I want to use fallowing java-script code which automatically fills textarea with full page url nad I need for that a textarea with ID="message", but I am new in php
<script type="text/javascript">
$(document).ready(function() {
var message = 'I thought that you would find this information very useful: ' + document.URL;
$('#message').text(message);
});
</script>
Thank you in advance!