I am creating an HTML element using
$(this).html(' my html here');
There are many elements that I need to add here with different CSS. So I want to make append another HTML here
$(this).html(' my html here'); $(this).html.append(' another html here');
How can i achieve this?
source share