Merge pull request #12690 from DlTA/patch-1

Update 2000-01-01-title.md
gh-pages
James M. Greene 2014-10-29 21:21:12 -05:00
commit 25b627de18
1 changed files with 4 additions and 3 deletions

View File

@ -8,9 +8,10 @@ permalink: api/webpage/property/title.html
## Examples ## Examples
```javascript ```javascript
var webPage = require('webpage'); page.open('http://phantomjs.org', function (status) {
var page = webPage.create(); console.log(page.title); // get page Title
// @TODO: Finish page.title example. phantom.exit();
});
``` ```