Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Jquery to populate input or textarea

<div id="example"></div>
  <script type="text/javascript">
             jah = "<p>Browser CodeName: " + navigator.appCodeName + "</p>";
             jah+= "<p>Browser Name: " + navigator.appName + "</p>";
             jah+= "<p>Browser Version: " + navigator.appVersion + "</p>";
             jah+= "<p>Cookies Enabled: " + navigator.cookieEnabled + "</p>";
             jah+= "<p>Platform: " + navigator.platform + "</p>";
             jah+= "<p>User-agent header: " + navigator.userAgent + "</p>";

             document.getElementById("example").innerHTML=jah;

             </script>

I'm using the above code to compile some browser info I need to collect from a form. How can I get that info passed to a Input or Textarea?

Thanks in advance!

like image 252
jahrichie Avatar asked May 11 '12 04:05

jahrichie


2 Answers

By using $.val. Assuming #example is a selector pointing to the input field in question, you can use something like this:

$('#example').val(jah);
like image 159
rjz Avatar answered Sep 20 '22 13:09

rjz


If you want to use pure JavaScript instead of jQuery, try this:

<form><textarea id="ta"></textarea></form>
<script type="text/javascript">
    jah = "whatever you want";
    var ta = document.getElementById('ta');
    ta.value = jah;
</script>

Assigning .value equals jQuery function .val(v);

like image 24
XiaoChi Avatar answered Sep 20 '22 13:09

XiaoChi