jquery - Javascript dialog doesn't Load data -


i'm using html divs dialog popups & declare them this:

< div id="div_name" style="display: none;"> < /div>

on js declare this

$("#div_name").dialog({ autoopen: false, height: 'auto', width: 'auto', }); 

and assign information (< li>1< /li>< li>2< /li>...) loaded database

i use open , close many times in row

$("#div_name").dialog('open'); $("#div_name").dialog('close'); 

the first time open it, information fine (this info loaded db everytime open dialog) 3rd or 4th time, information doesn't show in dialog, happening dialog doesn't display information, if me great, lot time & answers.


Comments