0
votes
3answers
36 views

PHP Simple HTML DOM Parser, find text inside tags that have no class nor id

I have a http://www.statistics.com/index.php?page=glossary&term_id=703 Specifically in these part: <b>Additive Error:</b> <p> Additive error is the error that is added to the ...
0
votes
1answer
40 views

Simple HTML Parser

<strong class="tb-rmb-num"><em class="tb-rmb">¥</em>39.00</strong> I'm trying to retrieve the number only without the currency sign My current code is $ret = ...
0
votes
1answer
30 views

How to Keep HTML Formatting Intact When Parsing with DOM - (No Tag Stripping)

Employing DOMDocument, I'm trying to read a portion of an HTML file and displaying it on a different HTML page using the code below. The DIV portion that I'm trying to access has several <p> ...
0
votes
1answer
30 views

Parsing HTML with DOM

I am trying to parse HTML for example <html> <head> </head> <body> <a href='example.com'>Hello, <span>World</span></a> <ul> ...
0
votes
1answer
25 views

javascript changing tag attributes not being executed in the right order?

I have an html file that consists of a table with fields inside. Some fields are marked by xxx, which should be converted to textareas. That has been successfully done as: function raplace() { ...
0
votes
3answers
40 views

Jquery converting &quot; to literal quotation

I am seeing some unexpected behavior in Jquery. It appears jquery is converting &quot; to literal double quotes, which is messing with form validation in a single page app I am working on. The ...
0
votes
2answers
54 views

How to style td using javascript without using id and class..?

Hi I am having HTML like this... <table width="600"> <tr> <td> Text </td> </tr> <tr> <td> <img src="demo.jpg" width="200" ...
0
votes
0answers
53 views

Python HTML getElementsByClassName alike manipulate on file content

I have saved the source code of a page to a file using Sikuli. I need a "roundup" on a batch of matrix style placed elements. But I don't want to calculate dimensions between them. I want URLs to type ...
0
votes
0answers
26 views

PHP DOM Parser Timetable to get variables

I'm trying to get the contents of each cell using PHP Simple HTML DOM Parser however I cant seem to get it working correctly. The timetable is read vertically for each day and i'm trying to get each ...
0
votes
1answer
44 views

Repair/fix invalid HTML using Javascript/jquery

I want to use content(some div) on the page. So I request the the page using AJAX. Since I want to use some div (by ID), I have written the following code but the problem is the HTML that gets ...
0
votes
2answers
65 views

PHP Get contents of webpage

So I am using the PHP Simple HTML DOM Parser to get the contents of a webpage. After I knew what I was doing was right, I still got the error that there was nothing to be found. So here's what I am ...
3
votes
1answer
62 views

Determine main article image - HTML Agility Pack

I would like to use HTML Agility Pack to determine the main article body and then extract the main article image from it. I have noticed that most of the site webmasters have their main content ...
0
votes
2answers
96 views

PHP - Parsing html tables via DOM

So I am using the PHP Simple HTML DOM Parser and I am trying to get the table list of Top Goalscorers from this webpage: ...
1
vote
1answer
86 views

Simple HTML DOM Parser - Get all plaintex rather than text of certain element

I tried all the solutions posted on this question. Although it is similar to my question, it's solutions aren't working for me. I am trying to get the plain text that is outside of <b> and it ...
2
votes
1answer
101 views

Symfony DomCrawler: Find element with specific attribute value

I'm using the DomCrawler component: http://symfony.com/doc/current/components/dom_crawler.html I'd like to, using the CSS like syntax, get an element with a specific attribute value. Here's the ...
0
votes
2answers
87 views

Parse HTML table in php

I have a database table which consists the following format of data in one column. <table cellspacing="1" cellpadding="0" border="0" width="395"> <tbody> <tr> ...
0
votes
1answer
35 views

PHP ganon how to read javascript

I am scraping some html pages using php ganon dom parser but i am stuck where i need to read some javascript from the source my javascript is like. <script type="text/javascript"> ...
0
votes
1answer
90 views

PHP ganon dom parser get next element when match is found

I am parsing and html dom string from ganon dom parser and want to get the next element plain text when a match is found on previous element e.g my html is like <tr class="last even"> ...
0
votes
0answers
43 views

Parsing and reading HTML content in a String as DOM

What is the best way to parse HTML content in a string? I need to read the content as DOM, what is the best toolkit to do it?
0
votes
0answers
11 views

How to display only the second block?

<div class="news">...</div> <div class="news">...</div> ← how to display only him? <div class="news">...</div> How to find the second the second unit, if the ...
0
votes
3answers
83 views

Call to a member function find() on a non-object using dom_parser [closed]

I'm scrapping website based on its category. There are plenty of result based on a specific category, like 1000+ result. Each time I scrape each page, it successfully returned the result on a ...
1
vote
1answer
102 views

Remove desired tag from html using JTidy

I am using JTidy and xpath in parsing HTML, but for the time being parsing text causes me a little trouble because it may include b tag inside, so I don't want to loop over it's child nodes but ...
2
votes
1answer
149 views

Finding div class value using php simple html dom or phpQuery

I'm trying to get a hang of php simple html dom and I'm having some issues when it comes to div classes. For example, say on newegg I want to find the value of the div class'skiplink' (I just picked ...
0
votes
2answers
75 views

Replace css value with a string

i need to change the height and top of my div to "$$height$$" and "$$top$$" before posting it for save in php. but jquery fails todo so (i think for mistake prevention): $("#myobject").css("width", ...
1
vote
2answers
550 views

Use PHP Simple HTML DOM Parser to find table cell and get contents of next sibling

I am trying to use PHP Simple HTML DOM Parser to grab the HTML of an external file. The file contains a table and the goal is to find a able cell with specific data contents, and then get the next ...
0
votes
1answer
71 views

How can I remove all tags except an allowed list from html parsed by php

I am parsing html in php and as I have no control over the original content I want to strip it of styling and unnecessary tags while still keep the content and a short list of tags, namely: p, img, ...
0
votes
1answer
44 views

Measuring HTML parsing time in web browsers

In my project, I attend to measure the HTML parsing time, that is, how much percent of processing time is for HTML parsing when a web browser handling a particular webpage. It seems instrumenting ...
0
votes
0answers
59 views

Parsing Table with Simple HTML Dom Parser

I'm trying to parse this website: (http://www.pomona.edu/administration/dining/menus/frary.aspx), and since Breakfast is in the first column, I'm trying to iterate through the columns. I'm a little ...
0
votes
0answers
75 views

PHP DOMDocument

I am attempting to replace a table with divs so that it can display alright on a mobile device, here is the code so far. $dom = new DOMDocument(); ...
1
vote
1answer
44 views

Difference between calling a script in the onload event or placing code at end of html

I was reading the google maps api documentation and stumbled across a paragraph that explains the Asynchronously Loading the API. The api documentation can be found here As an example it showed a ...
0
votes
4answers
560 views

PHP Simple HTML DOM Parser how to get Third table using find method

I have HTML code like following structure how to fetch Third table content from this HTML code using PHP Simple HTML DOM find method. <table width="100%" cellspacing="0" cellpadding="0" ...
1
vote
1answer
187 views

Preserving <br> tags when parsing HTML text content

i have a little issue. I want to parse a simple Html Document in PHP. Here is the simple Html : <html> <body> <table> <tr> ...
0
votes
0answers
46 views

How to nest anchor tags as Facebook notifications

my bosses ask me to do this and i really can't get it done. We run a site with real time notifications thats pops up like the facebook ones (i'm not talking about the notifications counters). We ...
2
votes
3answers
73 views

Parse HTML adding ID to all <input>s using NAME in PHP

I'm trying to take an HTML document in PHP (that I have no control over) and ensuring that each input has an id. If there's no id then I need to add one using whatever name has been set. For ...
0
votes
2answers
377 views

php DOM getAttribute

Alright, so I have an odd case here that I just can't figure out. I want to parse a list on a website. The HTML looks somewhat like this: // ... <ul id="foo"> <li data-text="item ...
0
votes
1answer
132 views

Parsing HTML (from string) in Internet Explorer

I wrote this cross-browser code for parsing XML from a string: var xparse = function (xml$s) { var xml, p; if (typeof(DOMParser) !== 'undefined') { var p = new DOMParser(); ...
0
votes
1answer
127 views

PHP Dom Get Only first meta tag

I'm a beginner programmer who is building an application that scrapes data and puts data into a database. I am trying to scrape something that looks like this: <meta property="og:image" ...
3
votes
1answer
117 views

Where does my dynamically added script go?

I'm new to web development and I'm trying to understand how the DOM works. I have a basic page with 2 buttons and some text. One of the buttons does a call to Jquery's Get function. My server ...
1
vote
1answer
103 views

HTML manipulation: Match the first X number of HTML tags and move them

Let's say I've have the code like this: <img src="001"> <img src="002"> <p>Some content here.</p> <img src="003"> What I want to do now is to match the first two ...
0
votes
2answers
100 views

how to access DOM in php that will echo out everything between <html></html> [duplicate]

Possible Duplicate: Export particular element in DOMDocument to string i know how to access different element depending on id but don't know how to get everything between html start tag to ...
0
votes
1answer
51 views

JAVA DOM: duplicated attributes

I'm using the DOM library for JAVA and some entries XHTML encounter this problem: [Fatal Error] tree.xml:238:185: Attribute "itemprop" was already specified for element "span". This is the XHTML ...
0
votes
1answer
131 views

PHP scrape HTML image sources which are NOT within anchor tags

I wish to return an array of image sources from HTML which are not nested within .. tags... that is, all images which are not links. The topic was already discussed briefly here: Match image tag not ...
-1
votes
1answer
28 views

In which situations, the elements will be attached to Head element of DOM during HTML parsing? [closed]

Obviously, the contents/tags within <head></head> pair will be attached to Head element. Is there any situation in which during the parsing of <body></body>, some elements ...
0
votes
1answer
235 views

HTML Parser into DOM in Ruby

Is there any HTML parser in Ruby that reads HTML document into a DOM Tree and represents HTML tags as DOM elements? I know Nokogiri but it doesn't parse HTML into DOM tree.
1
vote
1answer
302 views

PHP Simple DOM Parser Parse Current PHP Page

I am using the PHP Simple DOM parser to extract all of the image sources on a given page like so: // Include the library include('simple_html_dom.php'); // Retrieve the DOM from a given URL $html = ...
1
vote
2answers
376 views

how to parse this by simple html dom parser in php

<div id="productDetails" class="tabContent active details"> <span> <b>Case Size:</b> </span> 44mm <br> <span> <b>Case Thickness:</b> ...
0
votes
3answers
80 views

How to get the content of a span element using jQuery?

When a text is clicked on my page, I want to get the value of the nearest (going upwards) span element with the class of 'network_ip'. Here is my code: <div class="ip_header"> <div ...
4
votes
3answers
133 views

Find an HTML element which contains the largest number of mentions of given word

I have an HTML document and I would like to find the HTML element which is the closest wrapper to the largest cluster of mentions of a given word. With the following HTML: <body> <p> ...
-2
votes
3answers
163 views

how to replace string/ word in parsing html with php? [closed]

i have table like <html> <body> <table id="data" class="outer"> <tr><td>Date</td><td>12-09-12</td></tr> ...
1
vote
2answers
122 views

Dynamically Exclude Content In PHP Simple HTML DOM Parser

I am making a PHP-based application which will fetch content from a site using the PHP Simple HTML DOM Parser. I want to exclude some text between two HTML tags from the content dynamically. If the ...

1 2 3 4