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

  • Home
  • SEARCH
  • 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 7890587
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T06:23:35+00:00 2026-06-03T06:23:35+00:00

I need to write code that puts all of the href links from a

  • 0

I need to write code that puts all of the href links from a webpage into an array. Here’s what I have so far:

var array = [];
var links = document.links;
for(var i=0; i<links.length; i++) {
  array.push(links[i].href);
}

However, this does not work on a page like Gmail’s inbox, because the some of the links are within an iframe. How can I get ALL of the links, including the ones inside the iframe?

Also, this is for a google chrome extension. In the manifest, I have all_frames set to true – does this make a difference?

Thanks

  • 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-06-03T06:23:37+00:00Added an answer on June 3, 2026 at 6:23 am

    I have a method I use to access data in an IFrame. How fun that the answer is never just written down to read and use :P.
    Feel free to modify and abuse:

    public HtmlElementCollection GetIFrameElements(String tmpTag, int Frame)
        {
            HtmlElementCollection tmpCollection = mWebBrowser.Document.Window.Frames[Frame].Document.Body.GetElementsByTagName(tmpTag);
            return tmpCollection;
        }
    

    I then use it to look for whatever element Im after:

    foreach (HtmlElement el in GetElements("input"))
            {
                if (el.GetAttribute("id").Equals("hasNoGoogleAccount"))
                {
                    el.InvokeMember("click");
                }
            }
    

    You could always change the method to loop through and get all iFrames etc blah blah but that should be enough to get you moving.
    Rate me! Im new

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

Sidebar

Related Questions

I need to write some code that would loop though all rows of a
I have a need to write code that will prorate a value across a
I need to write code that picks up PGP-encrypted files from an FTP location
I need to write some code to convert an array of quads into a
I have some code I need to write a test for that connects to
I need to write some code (in any language) to process 10,000 files that
I need to write a delegate function that can 'wrap' some while/try/catch code around
I have some code that puts new text on first line of a text
I need to write some code that registers an event handler for the SiteMapResolve
I need to write code that reads the corflags of a .net assembly without

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.