">Favorilere Ekle
<script>
$(document).ready(function(){
$(".buton").on("click",function(){
var id=$(this).attr("id");
var uyeid=$(this).attr("uyeid");
$ajax({
type:"post",
url:"ajax.php",
data:"id="+id+"&uyeid="+uyeid,
success: function (ok) {
$(".fav-area").html(ok);
}
});
});
});
</script>