Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

314
Views
Extract content with Xpath and data attribute

I need to extract the content of the following div tag which has the data-visible="1" attribute and contains the div id "line".

<div class="line-name" id="line-10" data-visible="1">Need to extract</div>

I tried it like that, but I dont get any result.

$xpath->query('//*[contains(@id, "line")]//div[contains(@visible, "1")]');

What is the right way to extract the content with these both conditions and get the result:

Need to extract
over 4 years ago · Santiago Trujillo
1 answers
Answer question

0

Since this is a single element you should not use // after //*[contains(@id, "line")]. Also it is a data-visible attribute there, not visible.
You can use XPath expression like this:

'//div[contains(@id, "line") and @data-visible="1"]'

Or

'//div[contains(@id, "line")][@data-visible="1"]'
over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!