RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php [L]
use yii\helpers\Html;
php init
и все // Делаем запрос к данным без события
$.post(myajax.url, data, function (response) {
$("#block").html(response);
});
// делаем запрос при изменении чекбоксов
$("#block :checkbox").on("change", function () {
$.post(myajax.url, data, function (response) {
$("#block").html(response);
});
});