How to disable JQuery in the Yii Framework 1.1.x?
|
|
|
|
|
Question: How to disable JQuery in the Yii Framework 1.1.x?
Answer:
Include the following code anywhere in your application
Yii::app()->clientScript->scriptMap=array(
       'jquery.js'=>false,
);
This will prevent Yii from including it's build in JQuery file
|