I\'ve been having a hard time trying to figure out how to load jQuery or other CORE scripts in Yii 2.
jQuery
Yii 2
In Yii 1 it seemed this was
Yii 1
You can remove the core jQuery from loading like so:
config/web.php
'assetManager' => [ 'bundles' => [ // you can override AssetBundle configs here 'yii\web\JqueryAsset' => [ 'sourcePath' => null, 'js' => [] ], ], ],