Hello ,
I have one div which is dynamic and getting the increments in the css dynamically from jquery to fit the contents if they are larger.
now the problem is that there is one popup associated with the same div.
if content increase that popup's comes down, I don't know how to solve this issue . please help.
HTML
< div id='main_div' >
< div id='myid' >some info< /div >
< div id='popup' >< /div >
< /div >
< input type='button' id='incre' >
jQuery:
$("#incre").click(function()
{
$("#myid").html(" some more some more some more some more some more some more some more some more some more some more some more some more some more some more some more some more some more some more some more some more some more ");
});
Thanks advance Dave