JFactory/getDocument
From Joomla! Documentation
< JFactory
Returns a reference to the global document object, only creating it if it doesn't already exist. The object returned will be of type JDocument.
Syntax
object JDocument getDocument()
Example
In this example, the current page title is retrieved.
$doc =& JFactory::getDocument(); echo 'Current title is: ' . $doc->getTitle();