Merge branch 'patch-4' of https://github.com/nwiechmann/phantomjs into nwiechmann-patch-4

This commit is contained in:
Ivan De Marino
2014-03-29 11:03:53 +00:00
@@ -16,7 +16,12 @@ See also `page.plainText` to get the content without any HTML tags.
```javascript
var webPage = require('webpage');
var page = webPage.create();
// @TODO: Finish page.content example.
page.open('http://phantomjs.org', function (status) {
var content = page.content;
console.log('Content: ' + content);
phantom.exit();
});
```