How might someone fill in an input field with some text using jquery by clicking that text?
The text is generated dynamically so the value is not know ahead of time.
HTML:
@r.SpecialField
JS:
$(function(){
$('.special_field_link').live('click', function() {
$("#a_input_id").val($(this).html());
});
});
Also, you can use .text() instead of .html() as listed in this answer: Fill in Input Field by Clicking Link with JQuery
Running Sample: http://fiddle.jshell.net/s8nUh/