АНУ болон Иран улс энхийн хэлэлцээрт хүрсэн бөгөөд уг баримт бичигт баасан гарагт Швейцарт албан ёсоор гарын үсэг зурахаар болжээ.
Пакистаны Ерөнхий сайд Шахбаз Шариф энэхүү мэдээллийг олон нийтэд зарласан байна. Талуудын хооронд байгуулагдах энэхүү хэлэлцээр нь олон улсын анхаарлыг татаж буй томоохон дипломат үйл явдал болж байна.
Хэлэлцээрийн нарийвчилсан нөхцөл болон агуулгын талаарх мэдээллийг цаашид үргэлжлүүлэн хүргэх болно.
Дэлгэрэнгүйг эх сурвалжаас харах
↓Эх сурвалжийг нээх ↓
Prime Minister Shehbaz Sharif said the agreement will be signed on Friday in Switzerland
Published 14 Jun, 2026 21:34
The US and Iran have reached a peace agreement that will be formally signed on Friday in Switzerland, Pakistani Prime Minister Shehbaz Sharif has announced.
DETAILS TO FOLLOW
You can share this story on social media:
{
evtC.preventDefault();
});
const mainArticle = document.querySelector(‘.article’);
const articleParent = mainArticle.parentNode;
const listingElement = document.querySelector(‘.article__listing’).querySelector(‘.js-listing’);
const articles = [{
title: document.title,
root: mainArticle,
url: window.location.href,
}];
const mainURL = window.location.pathname;
let loadMoreButton = null;
let listingPressed = false;
let nextArticleNetworking = false;
let activeArticleIndex = 0;
let playerStylesAdded = !!document.querySelector(‘.jwplayer’);
let counter = 1;
const loadScript = async (src) => {
return new Promise((resolve, reject) => {
const script = document.createElement(‘script’);
script.src = src;
script.onload = () => {
resolve();
};
script.onerror = () => reject(new Error(`Script load error: ${src}`));
document.body.appendChild(script);
});
};
const prepareScripts = (root) => {
const children = Array.from(root.children);
const scripts = [];
children.forEach((child) => {
if (child.tagName === ‘SCRIPT’) {
scripts.push(child);
return;
}
if (child.children.length > 0) {
prepareScripts(child);
}
});
return scripts;
};
const getNextArticle = async () => {
if (nextArticleNetworking) {
return;
}
nextArticleNetworking = true;
let nextLink = window.nextSet.values().next().value;
if (mainURL === nextLink) {
window.nextSet.delete(nextLink);
nextLink = window.nextSet.values().next().value;
}
Array.from(listingElement.querySelectorAll(‘script’)).forEach((script) => {
script.remove();
});
if (nextLink) {
try {
const resultHTML = await fetch(nextLink).then((res) => res.text());
const item = document.createElement(‘div’);
item.innerHTML = resultHTML;
const articleRawContent = item.querySelector(‘.article__text’);
const frame = document.createElement(‘iframe’);
frame.addEventListener(‘load’, async () => {
nextArticleNetworking = false;
const iframeDocument = frame.contentDocument || frame.contentWindow.document;
const newArticle = iframeDocument.querySelector(‘.article’);
const newArticleContent = newArticle.querySelector(‘.article__text’);
const listing = newArticle.querySelector(‘.article__listing’);
listing?.remove();
newArticleContent.after(articleRawContent);
newArticleContent.remove();
counter += 1;
const yaBlock = newArticle.querySelector(‘.article__ya-recommendations’);
let yaRecommmendationsRoot = null;
if (counter % 3 !== 0) {
if (yaBlock) {
yaBlock.remove();
}
} else {
const yaScript = yaBlock.querySelector(‘script’);
if (yaScript) {
yaScript.remove();
}
yaRecommmendationsRoot = yaBlock.querySelector(‘.yandex_recommendations’);
if (yaRecommmendationsRoot) {
yaRecommmendationsRoot.id = `${yaRecommmendationsRoot.id}${counter}`;
}
}
articles.push({
title: iframeDocument.querySelector(‘title’).textContent,
root: newArticle,
url: nextLink,
});
articleParent.append(newArticle);
if (window.yaContextCb && yaRecommmendationsRoot) {
try {
window.yaContextCb.push(()=>{
Ya.adfoxCode.create({
ownerId: 258144,
containerId: `${yaRecommmendationsRoot.id}`,
sequentialLoading: true,
params: {
pp: ‘h’,
ps: ‘douc’,
p2: ‘gqqu’,
puid1: ”,
puid2: ”,
puid3: ”,
puid4: ”,
puid5: ”,
puid63: ”
}
})
});
} catch(e) {
console.log(e);
}
}
const scripts = prepareScripts(articleRawContent);
for (const script of scripts) {
if (script.src) {
try {
await loadScript(script.src);
} catch (e) {
console.log(e);
}
script.remove();
} else {
const inlineScript = document.createElement(‘script’);
inlineScript.textContent = script.textContent;
script.after(inlineScript);
script.remove();
}
}
});
frame.addEventListener(‘error’, () => {
nextArticleNetworking = false;
frame.remove();
throw new Error(‘Unable to load url’);
});
frame.style = “display: none;”
document.body.append(frame);
frame.src = `${window.location.origin}${nextLink}`;
} catch(error) {
console.log(error);
}
window.nextSet.delete(nextLink);
}
};
const getListingScrollProgress = () => {
const rect = listingElement.getBoundingClientRect();
const progress = ((window.innerHeight – rect.y) / listingElement.clientHeight);
return progress;
};
const onListingScroll = () => {
if (nextArticleNetworking) {
return;
}
if (getListingScrollProgress() >= 0.8 && window.nextSet.size === 0 && !listingPressed) {
listingPressed = true;
window.loadMoreArticlesButton.click();
setTimeout(() => {
listingPressed = false;
}, 500);
}
};
const onArticlesScroll = () => {
let newIndex = 0;
articles.forEach((article, index) => {
const articleRect = article.root.getBoundingClientRect();
const scrollProgress = (window.innerHeight – articleRect.y) / article.root.clientHeight;
if (scrollProgress >= 0.2) {
newIndex = index;
}
if (index === (articles.length – 1) && scrollProgress >= 0.5 && !nextArticleNetworking) {
getNextArticle();
}
});
if (activeArticleIndex !== newIndex) {
window.history.replaceState({}, articles[newIndex].title, articles[newIndex].url);
document.title = articles[newIndex].title;
}
activeArticleIndex = newIndex;
}
onListingScroll();
window.addEventListener(‘scroll’, onListingScroll, { passive: true });
window.addEventListener(‘scroll’, onArticlesScroll);
}
const scriptListing = document.querySelector(‘[data-scriptlisting]’);
scriptListing.remove();
]]>
Ya.adfoxCode.create({
ownerId: 258144,
containerId: ‘adfox_174039578397067785’,
sequentialLoading: true,
params: {
pp: ‘h’,
ps: ‘douc’,
p2: ‘gqqu’,
puid1: ”,
puid2: ”,
puid3: ”,
puid4: ”,
puid5: ”,
puid63: ”
}
})
})
]]>


