Can html be parsed with javascript without server languages?
my webpage should do :
parsing of all images from the url that user enter.
Can I do it only with Javascript if yes with library functions that exist doing that?
Thanks,
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Can be html parsed with javascript without server languages?
Yes . HTML can be parsed by javascript .
However , you can not make a request to another domain from the client side . The Same origin policy would prevent you from doing that .
If you want to parse a HTML page that comes from some other domain then you need to do that on the server side .