// Add this your view file:
$this->registerAssetBundle(yiiwebJqueryAsset::className(), View::POS_HEAD);
// Configure the jquery in the component section of your main.php or main-local.php
'components' => [
'assetManager' => [
'bundles' => [
'yiiwebJqueryAsset' => [
'jsOptions' => [ 'position' => yiiwebView::POS_HEAD ],
],
],
],
],