Hey guys,
Is there any way( app config ? ) to get Jquery lib always loaded in my pages?
I know I can set it to FALSE in client script configuration to not call it when I use some Yii js component.
Hey guys,
Is there any way( app config ? ) to get Jquery lib always loaded in my pages?
I know I can set it to FALSE in client script configuration to not call it when I use some Yii js component.
go to protected/views/layouts/main.php
put this line in the <HEAD> section:
Yii::app()->clientScript->registerCoreScript(‘jquery’);
Should work
Thank you, you resolved my problem