以下のコードで、次のコード行を変更したいと思います。
$("#commentload"+ID).prepend(html);
order=1
たとえば、パラメーターが URL で見つかった場合は、http://my.com?order=1
実行する必要があります。
$("#commentload"+ID).append(html);
それ以外の
$("#commentload"+ID).prepend(html);
私の言いたいことを理解していただければ幸いです。
$(document).ready(function(){
// Update Status
$(".update_button").click(function(){
var updateval = $("#update").val();
var dataString = 'update='+ updateval;
if(updateval==''){
alert("Please Enter Some Text");
} else {
$("#flash").show();
$("#flash").fadeIn(400).html('Loading Update...');
$.ajax({
type: "POST",
url: "message_ajax.php?CID=" + CID + "&Id="+Id,
data: dataString,
cache: false,
success: function(html){
$("#flash").fadeOut('slow');
$("#commentload"+ID).prepend(html);
$("#update").val('');
$("#update").focus();
$("#stexpand").oembed(updateval);
}
});
}
return false;
});
//commment Submit
});