Difference between revisions of "MediaWiki:Gadget-exlinks.js"

From RobotX
Jump to navigation Jump to search
TheTestWiki>Pratyya Ghosh
m (1 revision: Gadget import)
(No difference)

Revision as of 06:31, 22 November 2013

// **********************************************************************
// **                 ***WARNING GLOBAL GADGET FILE***                 **
// **             changes to this file affect many users.              **
// **           please discuss on the talk page before editing         **
// **                                                                  **
// **********************************************************************
/**
 * @source mediawiki.org/wiki/Snippets/Open_external_links_in_new_window
 * @version 4
 */
mw.hook('wikipage.content').add(function($content) {
        $content.find('a.external').each(function () {
                // Can't use wgServer because it can be protocol relative
                // Use this.href property instead of this.getAttribute('href')  because the propery
                // is converted to a full URL (including protocol)
                if (this.href.indexOf(location.protocol + '//' + location.hostname) !== 0) {
                        this.target = '_blank';
                }
        });
});