JQuery UI Dialog
JQuery UI Dialog
Hello Team,
I have an issue that not getting solved during the last few days...
Issue Details:
-=-=-=-=-=-=-=
I have a live content that updated using ajax arte, am working on a Forex website with a market rate values:
$(document).ready(function()
{
$.arte({'ajax_url':'www....',
'on_success': change_data_results}).start();
});
function change_data_results(data){
$("#signals").html(data);
$.arte().set('time', 1000);
//$.arte().stop(); // Not stop - Keep loading every 1 second.
}
I need to put a dialog box inside that content with a div specify with an id for each line and when I click that line I would like to load the DIALOG with content that the inner html of that dialog must updated online without refreshing the page or clicking the link again.
I need that Dialog to get live details from the same ajax content of the parent page to be loaded every 1 second in the dialog box itself.
Am using Classic ASP with ajax (javascript)....
<div id="dialog<%=rs.fields(0).value%>">
<!-- Content that must updated all the time (ONLINE / LIVE) -->
</div>
...
...
...
...
jQuery(document).ready( function() {
jQuery("#dialog<%=rs.fields(0).value%>").dialog({
autoOpen: false,
height: 'auto',
width: 300,
modal: true,
resizable: false
});
});
Wish to got some information soon as possible guys....
Sincerely yours....
Rabia Abu-Hanna