Мне нужно передать одну переменную. у меня свой модуль. Я в файле helper.php создал форму и и скрипт для отправки. Но выходит ошибка Uncaught SyntaxError: Unexpected token } Вот хелпер Код (PHP): <?php // No direct access defined( '_JEXEC' ) or die; /** * Class Module Helper * @author Alex Chervon */ class modAuctionHelper { /** * getData method * @param $params * @return array */ static function getData( $params ) { $db = JFactory::getDbo(); return array(); } } ?> <input type="button" name="Sub" class="button" value=жмите_сюда onclick = zapros()</input> <div id="korzina"</div> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script> <script> function zapros() { if (window.jQuery) { alert("jquery загружен"); $.ajax({ type: "POST", url: "/modules/mod_auction/tmpl/default.php", data: "template=atomic ", success: function(tut_dannye_ot_servera){ alert( "Data Saved: " + tut_dannye_ot_servera ); $('#korzina').replaceWith( tut_dannye_ot_servera ); } }); } } });</script> А вот дефаулт Код (PHP): <?php define('_JEXEC', 1); define('DS', DIRECTORY_SEPARATOR); if (file_exists(dirname(__FILE__) . '/defines.php')) { include_once dirname(__FILE__) . '/defines.php'; } if (!defined('_JDEFINES')) { define('JPATH_BASE', dirname(__FILE__)); require_once JPATH_BASE.'/includes/defines.php'; } require_once JPATH_BASE.'/includes/framework.php'; $app = JFactory::getApplication('site'); $app->initialise(); echo 'ответ сервера'; ?>