JQuery inline dialog? -



JQuery inline dialog? -

the built in jquery dialog great widget organizing content. how create inline can have bunch of dialog in same parent div right next each other? want utilize organize content.

you don't have have 2 separate dialogs organise info within dialog, split single dialog in 2 floating 2 divs together.

css:

div#dialogdiv { } div#dialogdiv div.div_left { float: left; width: 200px; height: 200px; } div#dialogdiv div.div_right { float: left; width: 200px; height: 200px; }

html:

<div id="dialogdiv"> <div class="div_left">left content</div> <div class="div_right">right content</div> </div>

jquery

Comments

Popular posts from this blog

How do I check if an insert was successful with MySQLdb in Python? -

delphi - blogger via idHTTP : error 400 bad request -

postgresql - ERROR: operator is not unique: unknown + unknown -