document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. Do not  want to include the automatic Jquery in Yii framework
  2. use below code snippet under protected/config/main.php  under components array
  3.         \'clientScript\' => array(
  4.             \'class\' => \'CClientScript\',
  5.             \'scriptMap\' => array(
  6.                 \'jquery.js\' => false,
  7.                 \'jquery.yii.js\' => false,
  8.             ),
  9.             \'coreScriptPosition\' => CClientScript::POS_BEGIN,
  10.         ),
  11.     ),
');