I have this code:
function discuss(thema){
$('#prep').val(thema + '<div>answer button</div>');
}
HTML:
<div id="quatschen">
<div id="prep"> </div>
</div>
it is not setting the value of prep, nothing happens if i click discuss() function.
discuss is called here:
<input type="text" name="thema" id="thema" />
<a href="javascript:discuss($('#thema').val())"> discuss me </a>
if I change val() to append(), it is working. why is val not working here?
Thanks for help
valsets thevalueproperty of an element; it doesn't change the contents of adiv. – Mathletics Feb 1 at 20:42valdoes (and why it "doesn't work" here): "The .val() method is primarily used to get the values of form elements such as input, select and textarea." -1 because this was the first google hit forjquery api val. – user166390 Feb 1 at 20:42.val()method is shorthand for accessing thevalueproperty of<input>,<select>, and<textarea>fields. (I guess probably<option>too though I don't think I've ever tried that.) – Pointy Feb 1 at 20:42