I want to add html tag without ending tag like that <div class="bottom-widget"> . For that I use jQuery prepend() method but full tag was added by this !
Html Markup -
<div class="widget">
        <h2>this is content 1</h2>
    </div>
</div>
Javascript Code :
$(".widget").prepend('<div class="bottom-widget">');
 
     
    