Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6954979
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T14:40:40+00:00 2026-05-27T14:40:40+00:00

Is it possible to use javascript to add target=_blank to all links that include

  • 0

Is it possible to use javascript to add target="_blank" to all links that include the following in the URL: profile.php?id=

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T14:40:40+00:00Added an answer on May 27, 2026 at 2:40 pm

    The following should work:

    var aElems = document.links;
    
    for (var i=0,len = aElems.length; i<len; i++){
        if (aElems[i].href.indexOf('profile.php?id=') != -1){
            aElems[i].target = '_blank';
        }
    }
    

    JS Fiddle demo.


    Edited to improve the performance of the above code, removing document.links and replacing it with document.getElementsByTagName('a'):

    var aElems = document.getElementsByTagName('a');
    
    for (var i=0,len = aElems.length; i<len; i++){
        if (aElems[i].href.indexOf('profile.php?id=') != -1){
            aElems[i].target = '_blank';
        }
    }
    

    JS Fiddle demo.


    It’s worth noting, though, that using Chris Fulstow‘s querySelectorAll()-enabled $('a[href*="profile.php?id="]') approach is marginally faster (in Chromium 14/Ubuntu 11.04): JS Perf speed-test. Therefore, the following is the fastest (in browsers that support querySelectorAll()):

    var aElems = document.querySelectorAll('a[href*="profile.php?id="]');
    
    for (var i=0,len = aElems.length; i<len; i++){
        if (aElems[i].href.indexOf('profile.php?id=') != -1){
            aElems[i].target = '_blank';
        }
    }
    

    JS Fiddle demo.

    Above assertion ‘fastest’ supported by JS Perf comparison, at least in Chromium 14/Ubuntu 11.04. Bear in mind, of course, that IE < 8, and Firefox 3, aren’t going to play well with this approach.

    Of course, the above should be corrected to:

    var aElems = document.querySelectorAll('a[href*="profile.php?id="]');
    
    for (var i=0,len = aElems.length; i<len; i++){
        aElems[i].target = '_blank';
    }
    

    JS Fiddle demo.

    This is because the if condition was already evaluated by querySelectorAll(), which makes the if entirely redundant.

    Modified JS Perf comparison: http://jsperf.com/anchor-selector-test/3.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is it possible to use JavaScript to open an HTML select to show its
Is it possible to use javascript to control which frame of a GIF image
Possible Duplicate: Escape string for use in Javascript regex I have a msg like
I just wonder if it is possible to only use CSS but not javascript
Is it possible to get the value from a JavaScript variable and use this
Possible Duplicates: Include a JavaScript file in a JavaScript file How to include a
in an app I'm programming I use javascript to add external image references to
Possible Duplicate: JavaScript: Is it better to use innerHTML or (lots of) createElement calls
Possible Duplicate: Elegant workaround for JavaScript floating point number problem Why is it that
Is it possible use mod_rewrite to resolve addresses hosted on another server? Say I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.