JQuery nie działa na Joomla 3

Próbuję stworzyć prosty skrypt jQuery w Joomla 3. Oto, co teraz wygląda mój moduł:

<?php 
// no direct access
defined('_JEXEC') or die;

$doc = JFactory::getDocument();
JHtml::_('jquery.framework');
$doc->addScriptDeclaration('
    $(document).ready(function () {
       $(".text").text("By this");
    });
');
?>

<div class="text">Text should be changed...</div>

Próbowałem tego fragmentu na normalnej stronie i działa idealnie, po prostu nie wiem, dlaczego nie chce działać w Joomla. Zainstalowałem także wtyczkę jQuery Easy, ale bez powodzenia.

questionAnswers(1)

yourAnswerToTheQuestion