注文できる画像のリストがあります。このコードを使用して画像を注文します。
$(document).ready(function(){
$(function()
{
$("#subafbeelding ul").sortable(
{
opacity: 0.6,
cursor: 'move',
update: function(){
var order = $(this).sortable("serialize") + '&action=updateRecordsListings';
$(".hoofdafbeelding").load("foo.php");
$.post("updatevolgoorde.php", order, function(theResponse)
{
$("#contentRight").html(theResponse);
});
}
});
});
});
後
$("#contentRight").html(theResponse);
div 見出しをリロードしたい。どうすればこれを作ることができますか?