Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Have the user provide a URL.

Open the URL (no need to display) and parse the DOM (read only, of course). Pull elements out of an HTML table and write to a text file?

If so, can I get some pseudo code or a list of the jQuery selectors needed to make this happen?

Thanks in advance!

share|improve this question
I you will have cross domain URL you will not ba able to get DOM elements because of security restrictions. – Samich Nov 21 '11 at 13:24
You're talking about Cross-Site Scripting (XSS), which is a huge security flaw. See en.wikipedia.org/wiki/Cross-site_scripting – Polynomial Nov 21 '11 at 13:25
1  
Try server-side tools like php curl. – Baszz Nov 21 '11 at 13:26
Also you can't write txt file from javascript. – Samich Nov 21 '11 at 13:26

closed as not a real question by jensgram, Blazemonger, Rory McCrossan, JMax, Zhaph - Ben Duguid Nov 21 '11 at 15:16

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

I suspect that you could iFrame the website URL and inspect the DOM on that. I believe I have seen other sites use similar methods for changing the CSS etc, I think CSSPivot does this, but the site is down for me, so I can't check it.

share|improve this answer

Make an AJAX call to your server (must not be cross domain) select your response from response with $(response) so that you can traverse the DOM.

Please mind that you cannot save a file from JavaScript rather you can make the request to the server and the server will response a text file to download.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.