حصريا
لشبكة الكلاسيكو العربية . نقدم لكم اعضائنا الكرام ولاول مرة القائد
التاريخي لريال مدريد راؤول غونزاليز بزي نادي شالكة الالماني حيث تم
تقديمه اليوم ونعتذر لقلة الصور فهي شحيحة من المصدر وسيتم اضافة كل جديد
حال حصولنا عليه .
$(function() {
$(".submit").click(function()
{
var subject = $("#subject").val();
var comment = $("#comment").val();
var sid = $("#sid").val();
var user_id = $("#user_id").val();
var name = $("#name").val();
var karma = $("#karma").val();
var email = $("#email").val();
var DataString = {
'subject': subject,
'comment': comment,
'sid': sid,
'user_id': user_id,
'name': name,
'karma': karma,
'email': email
}
if( comment=='' )
{
alert('يبدو انك نسيت ان تضيف معلومات كاملة');
}
else
{
$("#new_news_comm").hide();
$("#masg_to_the_user").show();
$("#masg_to_the_user").fadeIn(400).html('
ارسال التعليق ... ارجو الانتظار');
$.ajax({
type: "POST",
url: "includes/js_ajax/News/ajax_new_comm_send.php",
data: DataString,
cache: false,
success: function(html){
$("div#masg_to_the_user2").append(html);
$("div#masg_to_the_user2 div:last").fadeIn("slow");
$("#masg_to_the_user").hide();
}
});
}return false;
}); });
$(function(){
$("a.erese_news_comm").click(function(){
//get the id
the_comm_id = $(this).attr('id');
the_story_id = $(this).attr('name');
// show the spinner
$(this).parent().html("
");
//fadeout the comm_raper
$("div#comm_raper"+the_comm_id).fadeOut("fast");
//the main ajax request
$.ajax({
type: "POST",
data: "action=erese_news_comm&df="+$(this).attr("name")+"&id="+$(this).attr("id"),
url: "includes/js_ajax/News/erese_news_comm.php",
success: function(msg)
{
$("div#adminopti"+the_comm_id).html(msg);
//fadein the vote count
$("div#adminopti"+the_comm_id).fadeIn();
//remove the spinner
$("div#adminoptix"+the_comm_id).remove();
}
});
});
});