I'm quite new to javascript coding in I need some help from you. I've coded this code so far;
Quote
<script type="text/javascript">
function tag_url() {
var enterURL = prompt("Enter URL", "http://");
}
</script>
<input type="button" value="URL" onClick="tag_url()">
</ br></ br>
<textarea id="text" rows="10" cols="60">
</textarea>
function tag_url() {
var enterURL = prompt("Enter URL", "http://");
}
</script>
<input type="button" value="URL" onClick="tag_url()">
</ br></ br>
<textarea id="text" rows="10" cols="60">
</textarea>
and now i wanna code that the user input from java prompt will be inserted into a textfield.
Thanx for your help
