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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T15:07:50+00:00 2026-06-14T15:07:50+00:00

How can I get InnerText from Element with Class Name? <div class=SomeClass style=text-align: left;

  • 0

How can I get InnerText from Element with Class Name?

<div class="SomeClass" style="text-align: left; display: block;"></div>

<div class="SomeClass" style="text-align: left; display: block;">Sometext</div>
  • 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-14T15:07:51+00:00Added an answer on June 14, 2026 at 3:07 pm

    ok the class maybe more than one you must use a TstringList i made function for you:

    function GetInnersByClass(const Doc: IDispatch; const classname: string;var Lst:TStringList): Integer;
    var
      Document: IHTMLDocument2;     // IHTMLDocument2 interface of Doc
      Body: IHTMLElement2;          // document body element
      Tags: IHTMLElementCollection; // all tags in document body
      Tag: IHTMLElement;            // a tag in document body
      I: Integer;                   // loops thru tags in document body
    begin
      Lst.Clear;
      Result := 0 ;
      // Check for valid document: require IHTMLDocument2 interface to it
      if not Supports(Doc, IHTMLDocument2, Document) then
        raise Exception.Create('Invalid HTML document');
      // Check for valid body element: require IHTMLElement2 interface to it
      if not Supports(Document.body, IHTMLElement2, Body) then
        raise Exception.Create('Can''t find <body> element');
      // Get all tags in body element ('*' => any tag name)
      Tags := Body.getElementsByTagName('*');
      // Scan through all tags in body
      for I := 0 to Pred(Tags.length) do
      begin
        // Get reference to a tag
        Tag := Tags.item(I, EmptyParam) as IHTMLElement;
        // Check tag's id and return it if id matches
        if AnsiSameText(Tag.className, classname) then
        begin
          Lst.Add(Tag.innerHTML);
          Inc(Result);
        end;
      end;
    end;
    

    result is how many class each with function

    and you cam use it with this sample :

    var
      lst : TStringList;
    begin
      //
      lst := TStringList.Create;
      GetInnersByClass(wb1.Document,'SameClass',lst);
      ShowMessage(lst.Text);
      lst.Free;
    end;
    

    dont forget add MSHTML unit to main unit.

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

Sidebar

Related Questions

When I try and display text from an the InnerText from an XML element.
We can get class Class object by 3 methods: MyClass.class obj.getClass Class.forName(className) I don't
I can get the file path with: (message (file-name-directory (or buffer-file-name load-file-name))) But if
I am trying to remove JavaScript from the HTML. I can't get the regular
I want to get the A href of that element in span class=floatClear whose
From below HTML code I want to get all the text except that in
I'm receiving some 'body' content from a jquery's json call, where I can get
Firefox and Chrome let me create a <style> element and populate it, all from
Can get all triples with value null in specific field? All people with date_of_birth
I can get this to work: [<DllImport(user32.dll)>] extern bool GetClientRect(nativeint, RECT*) let getClientRect hwnd

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.