Inscrivez-vous ou connectez-vous pour rejoindre votre communauté professionnelle.
Basm Allah Alrahman Alrahim
Learn How To make Addons or Extensions
There are a lot of different things to extract articles like evernote clipper and bookmarklet [ used with WordPress ] ...etc , those addons made by JavaScript or similar codes
Thank you for this question that help us to search and learn
http://www.quora.com/Whats-the-best-method-to-extract-article-text-from-HTML-documentsThere is some answers here ,,, hope it'll help you.
A simple, but useful, jQuery method for extracting article text:
EXAMPLE:
Jquery:
$(document).ready(function(){
$("#btn1").click(function(){
alert("Text: " + $("#test").text());
});
HTML:
<button id="btn1">Show Text</button>