+ Reply to Thread
Results 1 to 2 of 2

Thread: Open files to new window

Share/Bookmark
  1. #1
    Junior Member sh0gun_of_harlem is on a distinguished road
    Join Date
    Feb 2008
    Location
    Texas
    Posts
    1
    Rep Power
    3

    Default Open files to new window

    I can link to PDFs that are uploaded in the wiki, but I would like them to open up in a new window.

    [[Media:Example.pdf]] is what I am using to link to the files now.

    I am not sure how to open them up in a new window. I have searched around the forum and cannot find an answer so any help is greatly appreciated.

  2. #2
    Super Moderator Skizzerz is a jewel in the rough Skizzerz is a jewel in the rough Skizzerz is a jewel in the rough Skizzerz's Avatar
    Join Date
    Dec 2007
    Location
    Texas
    Posts
    2,446
    Rep Power
    7

    Default

    you can accomplish this via javascript by adding the following to MediaWiki:Common.js (this will only work on the .pdf files)
    Code:
    function modifyPdfLinks() {
      var links = document.getElementsByTagName('a');
      for(var i = 0; i < links.count; i++) {
        var temp = links[i].href.split('.');
        if(temp[temp.count - 1].toLowerCase() == 'pdf') {
          links[i].target = '_blank';
          continue;
        }
      }
    }
    
    addOnloadHook(modifyPdfLinks);
    --Skizzerz (MediaWiki | StrategyWiki)

    How am I helping? Rate this post by clicking the icon below!

    Private messages are for private information. I will ignore any support requests in private messages.

    NEVER EDIT CORE FILES! Revert any core modifications you make before asking for help here. I will not give support for modified versions of MediaWiki (but I will yell at you)

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Similar Threads

  1. Setting server time
    By Don in forum Configuration
    Replies: 1
    Last Post: March 27th, 2009, 14:50
  2. My first Wiki project - looking for affordable paid help
    By jg123 in forum MediaWiki General Discussion
    Replies: 1
    Last Post: November 16th, 2007, 13:47
  3. Problem making new page
    By scohen in forum MediaWiki General Discussion
    Replies: 5
    Last Post: November 1st, 2006, 07:25
  4. Replies: 4
    Last Post: March 17th, 2006, 21:08

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts