User:Passawuth/Scripts/Helper/monobook.js
From Wikipedia, the free encyclopedia
If a message on your talk page led you here, please be wary of who left it. The code below could contain malicious content capable of compromising your account; if your account appears to be compromised, it will be blocked. If you are unsure whether the code is safe, you can ask at the appropriate village pump.
Note: After saving, you have to bypass your browser's cache to see the changes. In Internet Explorer and Firefox, hold down the Ctrl key and click the Refresh or Reload button. Opera users have to clear their caches through Tools→Preferences, see the instructions for Opera. Konqueror and Safari users can just click the Reload button.
//=========== Tabs ============== function addTab(url, name, id, title, key) { return addPortletLink('p-cactions', url, name, id, title, key); } function addTab(url, name, id, title, key, after) { return addPortletLink('p-cactions', url, name, id, title, key, after); } //===== Set Cursor Position in given Textbox ===== //Source: http://parentnode.org/javascript/working-with-the-cursor-position/ function setCaretTo(obj, pos) { if (obj.createTextRange) { /* Create a TextRange, set the internal pointer to a specified position and show the cursor at this position */ var range = obj.createTextRange(); range.move("character", pos); range.select(); } else if (obj.selectionStart) { /* Gecko is a little bit shorter on that. Simply focus the element and set the selection to a specified position */ obj.focus(); obj.setSelectionRange(pos, pos); } } //====== Get Pagename ======= function getPname() { return wgPageName.replace(/_/g, ' ') ; }

