Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
Read the docs! val sets the value property of an element; it doesn't change the contents of a div. – Mathletics Feb 1 at 20:42
1  
why downvote? is it too dumb? – doniyor Feb 1 at 20:42
Read the documentation. That will explain what val does (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 for jquery api val. – user166390 Feb 1 at 20:42
The .val() method is shorthand for accessing the value property 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
2  
@doniyor "Why is val not working here?" is trivially answered by the documentation. There is nothing to discuss here. – user166390 Feb 1 at 20:45
show 4 more comments

closed as too localized by undefined, Mathletics, John Koerner, Ram kiran, Graviton Feb 6 at 6:20

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

up vote 5 down vote accepted

Use .html().. .val is only for input fields.

$('#prep').html(thema + '<div>answer button</div>');
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.