I have the following website (hebrew): http://www.daydeals.co.il/

It contains many links to external websites. I want to write a jQuery script that will 1) open all the links 2) collect the elements from all the open websites that contains the text "someText" 3) return a collection of all the elements from (2)

Could someone please guid me how to do this?

another question: I tried to use the follwing jq selector: alert($("div:contains('אביב')").text());

however when I browse this in any browser the hebrew turns to gibrish. Any way to over come this?

Thanks in advance

link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

Due to cross-site scripting restrictions, the browser will not let you access a page on another domain via JavaScript. You will not be able to read from or collect data from an external website. You can do this with a server-side scripting like PHP, Perl or Java.

Do you have the Hebrew language version of the browser installed?

link|improve this answer
I have chrome supporting hebrew (All the menus are in hebrew). What else can i do ? – Elad Benda Aug 26 '11 at 18:59
I'm not sure about the Hebrew stuff, but if you want to open those pages and harvest some data from them take a look at the PHP function: fread. With this you can open a URL and parse through the HTML code. – Rusty Jeans Aug 26 '11 at 21:06
Given a page with many links, how can I surf some links (say, that match a regex) via C# ? I don't need to actually open the links in the browser - just harvest an address info from the sires the links refer to. – Elad Benda Aug 27 '11 at 10:00
Well I don't know C#, but you should be able to read the HTML contents of an external URL. I don't know how you'd parse that in C#, I'm assuming you can load the HTML into some DOM Document class and parse it that way, RegEx can be tricky since HTML code isn't very consistent. – Rusty Jeans Aug 27 '11 at 23:09
feedback

Try Web-Harvest. It's perfect for such tasks.

It's default working charset is UTF-8, so it should work with Hebrew sites, if they use UTF-8. You also can define another charset in the <config> element.

link|improve this answer
thanks. I will try – Elad Benda Dec 16 '11 at 21:48
feedback

Your Answer

 
or
required, but never shown

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