<script>
jQuery(document).ready(function($){
$('#user-submitted-title').on('keyup',function(e){
$('#user-submitted-content').val('Watch this video'+ $(this).val() +'.');
});
});
</script>
This will result in: Watch this video xxx.
I want to add more sentences in new rows... ass example...
val('Watch this video'+ $(this).val() +'.');
val('Watch this best video'+ $(this).val() +'.');
val('Watch this great video'+ $(this).val() +'.');
val('Watch this something'+ $(this).val() +'.');
val('Watch this that'+ $(this).val() +'.');
All this in up function, how?