I have a div
<div id="div1">
</div>
and i am inserting text into it using jquery :
$('#div1').html('abcd');
I want width of this div expands resize according to length of th text inserted. I tried :
#div1
{
width:auto;
}
but it is not working. Please help.