ملاحظة: بعد الحفظ، أنت قد تحتاج إلى إفراغ الكاش الخاص بمتصفحك لرؤية التغييرات.

  • فايرفوكس / سافاري: أمسك Shift أثناء ضغط Reload، أو اضغط على إما Ctrl-F5 أو Ctrl-R (⌘-R على ماك)
  • جوجل كروم: اضغط Ctrl-Shift-R (⌘-Shift-R على ماك)
  • إنترنت إكسبلورر: أمسك Ctrl أثناء ضغط Refresh، أو اضغط Ctrl-F5
  • أوبرا: اذهب إلى Menu → Settings (Opera → Preferences على ماك) ثم إلى Privacy & security → Clear browsing data → Cached images and files.
/**
 * jQuery Cookie plugin
 *
 * Copyright (c) 2010 Klaus Hartl (stilbuero.de)
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 *
 */
/**
 * @name $.cookie
 * @cat Plugins/Cookie
 * @author Klaus Hartl/klaus.hartl@stilbuero.de
 */

jQuery.cookie=function(key,value,options){if(arguments.length>1&&(value===null||typeof value!=="object")){options=jQuery.extend({},options);if(value===null){options.expires=-1;}
if(typeof options.expires==='number'){var days=options.expires,t=options.expires=new Date();t.setDate(t.getDate()+days);}
return(document.cookie=[encodeURIComponent(key),'=',options.raw?String(value):encodeURIComponent(String(value)),options.expires?'; expires='+options.expires.toUTCString():'',options.path?'; path='+options.path:'',options.domain?'; domain='+options.domain:'',options.secure?'; secure':''].join(''));}
options=value||{};var result,decode=options.raw?function(s){return s;}:decodeURIComponent;return(result=new RegExp('(?:^|; )'+encodeURIComponent(key)+'=([^;]*)').exec(document.cookie))?decode(result[1]):null;};

/* Extra Functions */
/* See original unminified with credits at MediaWiki:Functions.js */
function importUserScript(a){importScript("ויקיפדיה:סקריפטים/"+a)}function addLoadEvent(a){hookEvent("load",a)}function pickUpText(a){return ts_getInnerText(a)}function createOptionElement(a,d,c){var b=document.createElement("option");a.options.add(b);b.innerHTML=d;b.title=d;if(c){b.disabled=true}return a}function addEditButton(e,c,d,b,a){mwCustomEditButtons.push({imageFile:"http://upload.wikimedia.org/"+e,tagOpen:c,sampleText:d,tagClose:b,speedTip:a})}function addEditSelect(b,a){var d=document.createElement("div");d.style.cssFloat="left";d.style.styleFloat="left";d.appendChild(document.createTextNode(b+": "));d.appendChild(a);var c=getElementsByClassName(document,"DIV","editOptions")[0];c.parentNode.insertBefore(d,c)}function addLink(c,b,a,g,f,d,e){if(e&&!e.cloneNode){e=document.getElementById(e)}return addPortletLink(c,b,a,g,f,d,e)}function getParamValue(c){if(!location.search){return null}var a=RegExp("[&?]"+c+"=([^&]*)").exec(location.search);if(a){try{return decodeURIComponent(a[1])}catch(b){}}return null}String.prototype.getByteLength=function(){var c=0,b;for(var a=0;a<this.length;a++){b=this.charCodeAt(a);if(b<128){c++}else{if(b<2048){c+=2}else{if(b<65535){c+=3}else{c+=4}}}}return c};var hasClass=(function(){var a={};return function(b,c){return(a[c]?a[c]:(a[c]=new RegExp("(?:\\s|^)"+c+"(?:\\s|$)"))).test(b.className)}})();


/** Collapsible tables *********************************************************
 *
 *  Description: Allows tables to be collapsed, showing only the header. See
 *               [[Wikipedia:NavFrame]].
 *  Maintainers: [[User:R. Koot]]
 */
/* מבןסס על הפונקציה הנמצאת ב-Common.js בויקיפדיה האנגלית, תיקונים מויקיפדיה העברית. גרסה לא מכווצת (Minified) זמינה בכ-MediaWiki:Collapsetables.js */
function collapseTable(e){var b=document.getElementById("collapseButton"+e);var a=document.getElementById("collapsibleTable"+e);if(!a||!b||a.rows.length==0){return false}var d=a.rows;if(b.firstChild.data==collapseCaption){for(var c=1;c<d.length;c++){d[c].style.display="none"}b.firstChild.data=expandCaption}else{for(var c=1;c<d.length;c++){d[c].style.display=d[0].style.display}b.firstChild.data=collapseCaption}}function createCollapseButtons(){var k=0;var b=new Object();var a=document.getElementsByTagName("table");for(var d=0;d<a.length;d++){if(hasClass(a[d],"collapsible")){var j=a[d].getElementsByTagName("tr")[0];if(!j){continue}var h=j.getElementsByTagName("th")[0];if(!h){continue}b[k]=a[d];a[d].setAttribute("id","collapsibleTable"+k);var e=document.createElement("span");var f=document.createElement("a");var g=document.createTextNode(collapseCaption);e.className="collapseButton";f.style.color=h.style.color;f.setAttribute("id","collapseButton"+k);f.setAttribute("href","javascript:collapseTable("+k+");");f.appendChild(g);e.appendChild(document.createTextNode("["));e.appendChild(f);e.appendChild(document.createTextNode("]"));h.insertBefore(e,h.childNodes[0]);k++}}for(var d=0;d<k;d++){if(hasClass(b[d],"collapsed")||(k>=autoCollapseTables&&hasClass(b[d],"autocollapse"))){collapseTable(d)}else{if(hasClass(b[d],"innercollapse")){var c=b[d];while(c=c.parentNode){if(hasClass(c,"outercollapse")){collapseTable(d);break}}}}}}addOnloadHook(createCollapseButtons);