View Single Post
Old 12-11-2012, 08:49 AM   PM User | #6
luxpc
New to the CF scene

 
Join Date: Dec 2012
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
luxpc is an unknown quantity at this point
Post Textarea

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!
luxpc is offline   Reply With Quote