I have a list of pages that are dynamically generated with a echo statment. example:
<a href="<?php echo $action['href']; ?>"><span onclick="jQuery('#category_edit_dialog').dialog('open'); return false"><?php echo $action['text']; ?></a>
Bu jQuery UI iletişim penceresi yapmak için kodu:
$.ui.dialog.defaults.bgiframe = true;
$(function() {
$("#category_edit_dialog").dialog({
width: 960,
hide: 'slide',
autoOpen: false,
});
$('#open_category_edit_dialog').click(function() {
$('#category_edit_dialog').dialog('open');
return false;
});
});
ne ben başarmak istiyorum bağlantılar bir jQuery UI iletişim içeriği yükleyecektir tıklandığında an olduğunu. Yani soru php ile oluşturulan dış bağlantılar yüklemek için nasıl daha olasıdır.