امتحانات الفيزياء لنهاية الفصل الأول الصف الاول ثنوي

إنضم
11 ديسمبر 2011
المشاركات
64
مستوى التفاعل
0
النقاط
0
اشكرك يا غالي على الجهود
 
إنضم
28 ديسمبر 2010
المشاركات
111
مستوى التفاعل
0
النقاط
0
العمر
28
مشكور لجهودك المباركة وننتظر الاجمل
 
إنضم
28 ديسمبر 2010
المشاركات
56
مستوى التفاعل
0
النقاط
0
شكـرا لكمــ على هذا المجهود الرائع :eh_s(21):
 
إنضم
12 سبتمبر 2012
المشاركات
37
مستوى التفاعل
0
النقاط
0
باركـ الله فيكـ على المجهود
تحياتي وإحترامي
 
إنضم
27 ديسمبر 2012
المشاركات
37
مستوى التفاعل
0
النقاط
0
الله يعطيييك الف عآاافية <3 #!
 
إنضم
3 يناير 2011
المشاركات
288
مستوى التفاعل
0
النقاط
0
العمر
46
الإقامة
jordan - irbid- bayt ras
مشكورين والله يعطيكو العافية على هذه الجهود المباركة
 
إنضم
3 يناير 2011
المشاركات
288
مستوى التفاعل
0
النقاط
0
العمر
46
الإقامة
jordan - irbid- bayt ras
:icon30:مشكورين على هذا الجهد
 
إنضم
3 يناير 2011
المشاركات
288
مستوى التفاعل
0
النقاط
0
العمر
46
الإقامة
jordan - irbid- bayt ras
شكرا جزيلا لكم والله يعطيكو العافية مع الشكر
 
إنضم
3 سبتمبر 2010
المشاركات
21
مستوى التفاعل
0
النقاط
0
العمر
42
شكرا مميز جدا
 
إنضم
15 مايو 2013
المشاركات
11
مستوى التفاعل
0
النقاط
0
جزاكم الله خيراً
 
إنضم
29 سبتمبر 2014
المشاركات
32
مستوى التفاعل
0
النقاط
0
العمر
25
شكرااااااااااااااا الف شكر
 
إنضم
11 أغسطس 2014
المشاركات
84
مستوى التفاعل
0
النقاط
0
العمر
35
شكر

يعطيك العافية
 
إنضم
11 سبتمبر 2014
المشاركات
116
مستوى التفاعل
0
النقاط
0
العمر
38
مشكوريييييييييييييييييييييييييييييييييييييين
 
إنضم
8 سبتمبر 2013
المشاركات
77
مستوى التفاعل
0
النقاط
0
السلام عليكم ورحمة الله وبركانه شكرا عالافادة
 
إنضم
29 نوفمبر 2014
المشاركات
81
مستوى التفاعل
0
النقاط
0
بارك الله فيكم وجزاكم الف خير
 
إنضم
4 يناير 2010
المشاركات
25,673
مستوى التفاعل
1,928
النقاط
113
العمر
38
المنهاج الأردني
 

Benzer konular

const config = { siteUrl: 'https://www.jnob-jo.com', whitelist: [ 'youtube.com', 'youtu.be', 'facebook.com', 'twitter.com', 'iinkor.com', 'forum.iinkor.com', 'instagram.com', 'up.jnob-jo.com', 'drive.google.com', 'docs.google.com', 'apps.moe.gov.jo', 'nccd.gov.jo''instagram.com' ] }; function isWhitelisted(url) { return config.whitelist.some(domain => url.includes(domain)); } function isExternalLink(url) { try { const urlObj = new URL(url); const siteUrlObj = new URL(config.siteUrl); return urlObj.hostname !== siteUrlObj.hostname; } catch (e) { return false; } } function convertExternalLink(url, replaceWithStars = false) { if (!url) return url; // تجاهل الروابط الداخلية والمستثناة if (!isExternalLink(url) || isWhitelisted(url)) { return url; } if (replaceWithStars) { return '****'; } return config.siteUrl; } function processBBCodeLinks() { const textNodes = document.evaluate( "//text()[contains(., '[URL')]", document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null ); for (let i = 0; i < textNodes.snapshotLength; i++) { const node = textNodes.snapshotItem(i); let text = node.textContent; text = text.replace( /\[URL[^\]]*\](https?:\/\/[^\[]+)\[\/URL\]/g, (match, url) => { const isUrlAlone = text.trim() === match; const newUrl = convertExternalLink(url.trim(), isUrlAlone); return `[URL]${newUrl}[/URL]`; } ); if (text !== node.textContent) { node.textContent = text; } } } function processPlainTextLinks() { const textNodes = document.evaluate( "//text()[contains(., 'http://') or contains(., 'https://')]", document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null ); for (let i = 0; i < textNodes.snapshotLength; i++) { const node = textNodes.snapshotItem(i); let text = node.textContent; text = text.replace( /(https?:\/\/[^\s\[\]<>"']+)/g, (match) => { // تحقق مما إذا كان الرابط وحده في النص const isUrlAlone = text.trim() === match; return convertExternalLink(match, isUrlAlone); } ); if (text !== node.textContent) { node.textContent = text; } } } function processPageLinks() { const links = document.querySelectorAll('.message-body a, .p-body-pageContent a'); links.forEach(link => { const href = link.getAttribute('href'); if (href) { const isUrlAlone = link.textContent.trim() === href; const newHref = convertExternalLink(href, isUrlAlone); if (newHref !== href) { link.setAttribute('href', newHref); if (isUrlAlone) { link.textContent = '****'; } link.classList.add('external-redirect'); } } }); processBBCodeLinks(); processPlainTextLinks(); } document.addEventListener('DOMContentLoaded', processPageLinks); document.addEventListener('XFContentLoaded', processPageLinks); const observer = new MutationObserver((mutations) => { mutations.forEach((mutation) => { if (mutation.addedNodes && mutation.addedNodes.length > 0) { processPageLinks(); } }); }); observer.observe(document.body, { childList: true, subtree: true });