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.
Try this:
$(".special_field_link").click(function(){ $("#a_input_id").val($(this).text()); });