jquery html append input code example
Example 1: how to append value to input field using jquery
$("#resultsInput").val($("#resultsInput").val() + temp_string);
Example 2: jquery append html
$("p").append(" <b>You can write your Text Here </b>.");