I have code jquery working fine with me ,
the problem is when I insert data and selected its append down then down then down :) I wont append up of last append data
here is code:
<script>
$(function(){
$('#categorie-form').submit(function(){
$.post("categorie.php?type=categorie",$('#categorie-form').serialize(),function(categorie){
$("#showCategorie").append(categorie);
$("[name=categories]").val("");
});
return false;
});
});
</script>
<div id="showCategorie" ></div>
i hope answer simple .