Blog Categories
Tag Archives: cookies
Yii Framework & jQuery Cookie Plugin
Accessing the jQuery Cookie plugin is easy in Yii Framework. Here is the code you will need to put in your PHP file to include the right script references: $cs = Yii::app()->clientScript; $cs->registerCoreScript(’jquery’); $cs->registerCoreScript(’cookie’); $cs->registerScriptFile(CController::createUrl(’/js/mainsite.js’), CClientScript::POS_HEAD); Then, in your JavaScript, … Continue reading