“قائمة” نتنياهو الاعتراضية على خطة ترامب!
$(function () {
// Handler for .ready() called.
$(“#searchButton”).on(“click”, function () {
var query = $(“#search”).val().trim();
if (query) {
$(“#searchForm”).submit();
}
});
$(“.updateSession”).on(“click”, function () {
var value = $(this).data(“region”);
updateSessionValue(value);
});
function updateSessionValue(sessionValue) {
$.ajax({
type: ‘POST’,
url: ‘/Site/UpdateSession’, // Ensure this matches your route
data: {
sessionValue: sessionValue
},
success: function (response) {
console.log(‘Session updated successfully’);
$(“.updateSession”).removeClass(“active”);
$(this).addClass(“active”);
window.location.href = ‘https://www.annahar.com/’;
},
error: function (xhr) {
console.error(‘Error updating session:’, error);
}
});
}
$(“.regionDropdownBtn”).click(function () {
$(this).parent().find(“.countryDropdown”).show();
});
$(document).click(function (event) {
// Check if the click is outside the countryDropdown
if (!$(event.target).closest(“.regionDropdown”).length) {
$(“.countryDropdown”).hide(); // Hide all dropdowns
}
});
});
.textResizer {
padding: 15px 0 10px;
display: flex;
align-items: center;
}
.bodyContentMainParent iframe {
width: 100%;
}
.bodyText * {
font-size: inherit !important;
line-height: 1.5;
font-family: cairo !important;
}
كتاب النهار
30-01-2026 | 04:41
ليس لديك حساب؟
$(document).ready(function () {
var encodedTitle = “%22%D9%82%D8%A7%D8%A6%D9%85%D8%A9%22%20%D9%86%D8%AA%D9%86%D9%8A%D8%A7%D9%87%D9%88%20%D8%A7%D9%84%D8%A7%D8%B9%D8%AA%D8%B1%D8%A7%D8%B6%D9%8A%D8%A9%20%D8%B9%D9%84%D9%89%20%D8%AE%D8%B7%D8%A9%20%D8%AA%D8%B1%D8%A7%D9%85%D8%A8%21”;
$(“#btnShareFB”).on(“click”, function () {
var link = document.location.href;
var pageTitle = encodeURIComponent(link);
window.open(‘https://www.facebook.com/sharer/sharer.php?u=’ + link, ‘facebook-share-dialog’, ‘width=626,height=436’);
});
$(“#btnShareTwitter”).on(“click”, function () {
var link = document.location.href;
var encoded = encodeURIComponent(link);
var twitterShareUrl = “https://twitter.com/intent/tweet?text=” + encodedTitle + “&url=” + encoded;
window.open(twitterShareUrl, ‘_blank’, ‘width=550,height=420’);
});
$(“#btnShareMessenger”).on(“click”, function () {
var link = document.location.href;
var encoded = encodeURIComponent(link);
var messengerShareUrl = “fb-messenger://share/?link=” + encoded;
window.open(messengerShareUrl, ‘_blank’, ‘width=550,height=420’);
});
$(“#btnShareTelegram”).on(“click”, function () {
var link = document.location.href; // Get the current page URL
var encoded = encodeURIComponent(link); // Encode the URL
var telegramShareUrl = “https://t.me/share/url?url=” + encoded + “&text=” + encodedTitle;
window.open(telegramShareUrl, ‘_blank’, ‘width=550,height=420’);
});
$(“#btnShareWhatsapp”).on(“click”, function () {
var link = document.location.href;
var encoded = encodeURIComponent(link);
var whatsappShareUrl = “https://api.whatsapp.com/send?text=” + encodedTitle + ” ” + encoded;
window.open(whatsappShareUrl, ‘_blank’, ‘width=550,height=420’);
});
$(“#btnShareMail”).on(“click”, function () {
var link = document.location.href;
var encoded = encodeURIComponent(link);
var mailShareUrl = “mailto:?subject=” + encodedTitle + “&body=” + encoded;
window.open(mailShareUrl, ‘_blank’, ‘width=550,height=420’);
});
$(“#btnSharePrint”).on(“click”, function () {
// print only article content
var printContents = document.querySelector(“.topSection .title”).innerHTML;
printContents += document.querySelector(“.imgContainer”).outerHTML;
printContents += document.querySelector(“.bodyText”).innerHTML;
// print printContents
var printWindow = window.open(”, ”, ‘height=400,width=800’);
printWindow.document.write(‘
printWindow.document.write(‘body {direction: rtl;}’);
// make page rtl
printWindow.document.write(printContents);
printWindow.document.write(”);
printWindow.document.close();
printWindow.print();
});
$(“#btnShareInstagram”).on(“click”, function () {
var link = document.location.href;
var encoded = encodeURIComponent(link);
var instagramShareUrl = “https://www.instagram.com/?url=” + encoded;
window.open(instagramShareUrl, ‘_blank’, ‘width=550,height=420’);
});
$(“#btnShareLinkedIn”).on(“click”, function () {
var link = document.location.href;
var encoded = encodeURIComponent(link);
var linkedinShareUrl = “https://www.linkedin.com/shareArticle?mini=true&url=” + encoded + “&title=” + encodedTitle;
window.open(linkedinShareUrl, ‘_blank’, ‘width=550,height=420’);
});
$(“#btnShareFBMobile”).on(“click”, function () {
var link = document.location.href;
var pageTitle = encodeURIComponent(link);
window.open(‘https://www.facebook.com/sharer/sharer.php?u=’ + link, ‘facebook-share-dialog’, ‘width=626,height=436’);
});
$(“#btnShareTwitterMobile”).on(“click”, function () {
var link = document.location.href;
var encoded = encodeURIComponent(link);
var twitterShareUrl = “https://twitter.com/intent/tweet?text=” + encodedTitle + “&url=” + encoded;
window.open(twitterShareUrl, ‘_blank’, ‘width=550,height=420’);
});
$(“#btnShareMessengerMobile”).on(“click”, function () {
var link = document.location.href;
var encoded = encodeURIComponent(link);
var messengerShareUrl = “fb-messenger://share/?link=” + encoded;
window.open(messengerShareUrl, ‘_blank’, ‘width=550,height=420’);
});
$(“#btnShareTelegramMobile”).on(“click”, function () {
var link = document.location.href; // Get the current page URL
var encoded = encodeURIComponent(link); // Encode the URL
var telegramShareUrl = “https://t.me/share/url?url=” + encoded + “&text=” + encodedTitle;
window.open(telegramShareUrl, ‘_blank’, ‘width=550,height=420’);
});
$(“#btnShareWhatsappMobile”).on(“click”, function () {
var link = document.location.href;
var encoded = encodeURIComponent(link);
var whatsappShareUrl = “https://api.whatsapp.com/send?text=” + encodedTitle + ” ” + encoded;
window.open(whatsappShareUrl, ‘_blank’, ‘width=550,height=420’);
});
$(“#btnShareMailMobile”).on(“click”, function () {
var link = document.location.href;
var encoded = encodeURIComponent(link);
var mailShareUrl = “mailto:?subject=” + encodedTitle + “&body=” + encoded;
window.open(mailShareUrl, ‘_blank’, ‘width=550,height=420’);
});
$(“#btnSharePrintMobile”).on(“click”, function () {
// print only article content
var printContents = document.querySelector(“.topSection .title”).innerHTML;
printContents += document.querySelector(“.imgContainer”).outerHTML;
printContents += document.querySelector(“.bodyText”).innerHTML;
// print printContents
var printWindow = window.open(”, ”, ‘height=400,width=800’);
printWindow.document.write(‘
printWindow.document.write(‘body {direction: rtl;}’);
// make page rtl
printWindow.document.write(printContents);
printWindow.document.write(”);
printWindow.document.close();
printWindow.print();
});
$(“#btnShareInstagramMobile”).on(“click”, function () {
var link = document.location.href;
var encoded = encodeURIComponent(link);
var instagramShareUrl = “https://www.instagram.com/?url=” + encoded;
window.open(instagramShareUrl, ‘_blank’, ‘width=550,height=420’);
});
$(“#btnShareLinkedInMobile”).on(“click”, function () {
var link = document.location.href;
var encoded = encodeURIComponent(link);
var linkedinShareUrl = “https://www.linkedin.com/shareArticle?mini=true&url=” + encoded + “&title=” + encodedTitle;
window.open(linkedinShareUrl, ‘_blank’, ‘width=550,height=420’);
});
})
document.addEventListener(‘DOMContentLoaded’, () => {
const articleId = document.getElementById(‘articleId’).value;
const authorName = document.getElementById(‘authorName’).value;
if (articleId && authorName) {
gtag(‘event’, ‘view’, {
‘event_category’: ‘Article’,
‘event_label’: authorName,
‘value’: 1
});
}
});
window.OneSignal = window.OneSignal || [];
OneSignal.push(function () {
OneSignal.init({
appId: “2d5c85e5-fb2d-4d10-9ce4-323782c157b7″,
});
});
(function(){function c(){var b=a.contentDocument||a.contentWindow.document;if(b){var d=b.createElement(‘script’);d.innerHTML=”window.__CF$cv$params={r:’9c5dc103a92297ae’,t:’MTc2OTc0MjM5Mg==’};var a=document.createElement(‘script’);a.src=’/cdn-cgi/challenge-platform/scripts/jsd/main.js’;document.getElementsByTagName(‘head’)[0].appendChild(a);”;b.getElementsByTagName(‘head’)[0].appendChild(d)}}if(document.body){var a=document.createElement(‘iframe’);a.height=1;a.width=1;a.style.position=’absolute’;a.style.top=0;a.style.left=0;a.style.border=’none’;a.style.visibility=’hidden’;document.body.appendChild(a);if(‘loading’!==document.readyState)c();else if(window.addEventListener)document.addEventListener(‘DOMContentLoaded’,c);else{var e=document.onreadystatechange||function(){};document.onreadystatechange=function(b){e(b);’loading’!==document.readyState&&(document.onreadystatechange=e,c())}}}})();
Source: Annahar

