Tagged Questions
0
votes
3answers
264 views
Create a JSON object from HTML using jQuery
Problem Overview
Let's say I have a shipment of candy. The shipment has a number of boxes, and each box has a number of unique candy types. Every box has a unique id, different from every other ...
0
votes
2answers
92 views
Javascript simulation [closed]
I am doing a webscrape on this public website, http://www.windfinder.com.
I am trying to simulate what the "Save changes button" does at http://www.windfinder.com/settings, can't figure out what the ...
1
vote
2answers
111 views
Need to scrape contents of website that requires an “i agree” cookie to be set
From everything I've read, it seems that this is an impossible. But here is my scenario:
I need to scrape a table's content containing for sale housing information. The page is not password ...
3
votes
2answers
293 views
Node Jsdom Scrape Google's Reverse Image Search
I want to programatically find a list of URLs for similar images given an image URL. I can't find any free image search APIs so I'm trying to do this by scraping Google's Search by Image.
If I have ...
2
votes
1answer
165 views
Scrape / eavesdrop AJAX data using JavaScript?
Is it possible to use JavaScript to scrape all the changes to a webpage that is being updated live with AJAX? The site I wish to scrape updates data using AJAX every second and I want to grab all the ...
0
votes
2answers
92 views
Xdomain ajax html scrape is loading images when wrapping data respose in jquery
I'm trying to make a cross domain request to fetch the html, cache it and then iterate over the cached html to pull out data and eventually put it on the page. This is working but it wastes http reqs.
...
2
votes
2answers
85 views
Positive Scraping [closed]
BACKGROUND:
I'm part of a music sharing (links TO gs/yt on pirating) group on facebook. Each day up to 20 members each post a link to a song that they think the community will like, and so we grow in ...
1
vote
1answer
68 views
How do I scrape the info from a table on a webpage when the info is created dynamically by javascript?
I'm trying to scrape the info from the table on this page: http://www.dectech.co.uk/football/index.php
I'm a html, css, javascript noob and was wondering how I can get the actual info rather than the ...
2
votes
1answer
107 views
Dynamically web scrape tables for a CMS
Does anyone have suggestions as to how I could scrape a table that updates daily from a website when I do not have access to server side scripting? Specifically, I am using a CMS - Drupal - and do not ...
0
votes
4answers
146 views
Scrape certain links from a page with javascript
Here is a sample block of code I need to scrape:
<p>This paragraph contains <a href="http://twitter.com/chsweb" data-placement="below" rel="twipsy" target="_blank" ...
-1
votes
1answer
64 views
How to scrape relative images
If i look at Amazon Button to add items to lists on their site - you can see it here:
http://www.amazon.co.uk/wishlist/get-button
How does it work? I'm pretty sure it scrapes the page somehow but ...
0
votes
2answers
324 views
How to get data from string using Javascript Regex
I can't post the exact data i'm trying to extract but here's a basic scenario with the same outcome. I'm grabbing the body of a page and trying to extract a bit.ly link from it. So let's say for ...
1
vote
1answer
225 views
Display JSON from external website scrape on a chart
So I have been trying to scrape a websites data.asp file (which seems to be formatted in json) into my website to be displayed as a chart I seem to be able to get the json data but will not display as ...
-2
votes
1answer
285 views
Screen Scraping in PHP [closed]
I am trying to scrape off the news off a site.
I want to get the snippets just like they are displaying it, but I will theme it myself. I need the date, title, snippet of the article, and the read ...
1
vote
1answer
646 views
Is it possible to plug a JavaScript engine with Ruby and Nokogiri?
I'm writing an application to crawl some websites and scrape data from them. I'm using Ruby, Curl and Nokogiri to do this. In most cases it's straightforward and I only need to ping a URL and parse ...
0
votes
2answers
494 views
How to scrape page requiring cookies and javascript in PHP
Is there an easy way to emulate cookies and javascript with a php script scraping a web page requiring it?
The current response shows:
<body><noscript>This site requires JavaScript and ...
2
votes
1answer
860 views
Javascript inside of iframe. Scraping with watir
I'm trying to figure out WATIR.
Here is a situation. I want to monitor ads in few websites, but scraping them is not easy task because they are in iframe, then there is another iframe links which is ...
1
vote
2answers
191 views
Can YUI 3.4.1 Be Used to fetch text from a remote web server?
Within the context of a web application written using the YUI library 3.4.1 it is necessary to load free-form text data from a remote server. I've looked DataSource Get and IO examples in YUI ...
1
vote
2answers
650 views
Scrape a website (javascript website) using php
I am trying to scrape a website (believe it is in JavaScript) using a simple PHP script. I am a beginner so any help would be greatly appreciated. The URL of the webpage is:
...
1
vote
1answer
1k views
How to properly use mechanize to scrape AJAX sites
So I am fairly new to web scraping. There is this site that has a table on it, the values of the table are controlled by Javascript. The values will determine the address of future values that my ...
3
votes
4answers
683 views
Help with screen scraping/parsing
I have been attempting to scrape and eventually parse some data(specifically availabilities and price) from hostels.com, for example http://www.hostels.com/hosteldetails.php/HostelNumber.11890. The ...
0
votes
3answers
2k views
Scrape web site generated by Javascript
I think this is a real challenging one!
I write a website for my local football league, www.rdyfl.co.uk , and include javascript code snippets from the F.A's Full-Time system where we generate our ...
1
vote
2answers
451 views
scrape parent page html from iframe
I have an iframe which is used to generate a PDF from its parent page. The PDF maker (ABCpdf) requires an HTML file which it then converts.
What I do at present is scrape the parent's HTML using:
...
1
vote
4answers
76 views
RegEx problem or maybe another solution altogether?
The problem I'm having is that I have a block of JavaScript I've successfully scraped out of a websites source and now I have to sift through to get the specific values I'm looking for.
I need to ...
0
votes
2answers
342 views
How can I scrape the current webpage with php/javascript?
I have made the following webpage for generating interactive todo lists: http://robert-kent.com/todo/todo.php
Basically, the user pastes a numbered todo list and each task is placed into it's own div ...