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 6160619
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T21:20:07+00:00 2026-05-23T21:20:07+00:00

Given this example HTML that my GM script runs on, I want to make

  • 0

Given this example HTML that my GM script runs on, I want to make a code that captures the ID from http://www.mycharactersID.com/ID=234223

After the JavaScript got 234223, and the other ID’s on the page. Then open them with different link in new tabs. I mean for all ID’s in the HTML.

Example: window.open("http://www.mycharactersID.com/TalkID=234223").

Burada takılan <b>12</b> karakter bulunmaktadır.<br><br>


          <table border="0" cellpadding="2" cellspacing="0" width="400">

            <tbody><tr>
              <td width="234">&nbsp;

                <a href="CharacterDetails.asp?action=view&amp;CharacterID=1858480">Alexandra&nbsp;Anthony</a>

              </td>
              <td align="right" width="158">

              &nbsp; </td>
            </tr>

            <tr class="DarkColumnHL">
              <td width="234">&nbsp;

                <a href="CharacterDetails.asp?action=view&amp;CharacterID=2624518">Igor&nbsp;Arnaudov</a>

              </td>
              <td align="right" width="158">

              &nbsp; </td>
            </tr>

            <tr>
              <td width="234">&nbsp;

                <a href="CharacterDetails.asp?action=view&amp;CharacterID=1318025">Ashanti&nbsp;Dunn</a>

              </td>
              <td align="right" width="158">

              &nbsp; </td>
            </tr>

            <tr class="DarkColumnHL">
              <td width="234">&nbsp;

                <a href="CharacterDetails.asp?action=view&amp;CharacterID=621305">Abigail&nbsp;Eliopoulos</a>

              </td>
              <td align="right" width="158">

              &nbsp; </td>
            </tr>

            <tr>
              <td width="234">&nbsp;

                <a href="CharacterDetails.asp?action=view&amp;CharacterID=1853122">Fynn Linus&nbsp;Hargasser</a>

              </td>
              <td align="right" width="158">

              &nbsp; </td>
            </tr>

            <tr class="DarkColumnHL">
              <td width="234">&nbsp;

                <a href="CharacterDetails.asp?action=view&amp;CharacterID=2347156">Sabela&nbsp;Hernani</a>

              </td>
              <td align="right" width="158">

              &nbsp; </td>
            </tr>

            <tr>
              <td width="234">&nbsp;

                <a href="CharacterDetails.asp?action=view&amp;CharacterID=595514">Maaja&nbsp;Jürisson</a>

              </td>
              <td align="right" width="158">

              &nbsp; </td>
            </tr>

            <tr class="DarkColumnHL">
              <td width="234">&nbsp;

                <a href="CharacterDetails.asp?action=view&amp;CharacterID=1329193">Sixtine&nbsp;Karakaya</a>

              </td>
              <td align="right" width="158">

              &nbsp; </td>
            </tr>

            <tr>
              <td width="234">&nbsp;

                <a href="CharacterDetails.asp?action=view&amp;CharacterID=156315">Umut&nbsp;Koç</a>

              </td>
              <td align="right" width="158">

              &nbsp; </td>
            </tr>

            <tr class="DarkColumnHL">
              <td width="234">&nbsp;

                <a href="CharacterDetails.asp?action=view&amp;CharacterID=821852">Shanice&nbsp;Manning</a>

              </td>
              <td align="right" width="158">

              &nbsp; </td>
            </tr>

            <tr>
              <td width="234">&nbsp;

                <a href="CharacterDetails.asp?action=view&amp;CharacterID=393396">Demircan&nbsp;Özdal</a>

              </td>
              <td align="right" width="158">

              &nbsp; </td>
            </tr>

            <tr class="DarkColumnHL">
              <td width="234">&nbsp;

                <a href="CharacterDetails.asp?action=view&amp;CharacterID=550724">Mélodie&nbsp;Stavropoulos</a>

              </td>
              <td align="right" width="158">

              &nbsp; </td>
            </tr>

            </tbody></table>

            <br>
            Not: En fazla 100 karakter listelenmektedir.<br><br>

Thank you.

  • 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-23T21:20:08+00:00Added an answer on May 23, 2026 at 9:20 pm

    Here’s a complete GM script that will work.

    Note that it opens all new tabs at once. To open sequentially, you’d need to queue them like in this answer.

    // ==UserScript==
    // @name            _Open lots of tabs
    // @include         http://mycharactersID.com/YOUR_PATH/*
    // @include         http://www.mycharactersID.com/YOUR_PATH/*
    // @require         http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js
    // ==/UserScript==
    
    $("td > a[href*='CharacterID']").each ( function () {
        var ID  = this.href.match (/CharacterID=(\d+)$/i);
        if (ID  &&  ID.length > 1) {
            ID  = ID[1];
            window.open ("http://www.mycharactersID.com/TalkID=" + ID,  "_blank");
        }
    } );
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to solve this problem : http://uva.onlinejudge.org/external/7/732.html . For the given example, they
Special documentation blocks in Python in http://www.doxygen.nl/manual/docblocks.html gives an example of doxygen usage with
Given this example: <img class=a /> <img /> <img class=a /> <img class=a id=active
Given this example XML file: <doc> <tag> Hello ! </tag> <tag> My name is
Given this example, how would I return the result of the equation rather than
Given the example below, can someone please show me how this could be called?
This is just an example, but given the following model: class Foo(models.model): bar =
This is easier to explain with an example. Given these two classes: public class
Given the email address: Jim <jim@example.com> If I try to pass this to MailAddress
I recently used a nice little jquery script that loads images with a given

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.