Here is my code.
Finally I have found this solution. I have use jQuery appendTo as in $(options + "").appendTo(this); method instead of .html as in $(this).html(options + ""); .
appendTo
$(options + "").appendTo(this);
.html
$(this).html(options + "");