Skip to content

Instantly share code, notes, and snippets.

@cebe
Created July 25, 2012 00:32
Show Gist options
  • Select an option

  • Save cebe/3173620 to your computer and use it in GitHub Desktop.

Select an option

Save cebe/3173620 to your computer and use it in GitHub Desktop.
Yii: ajax links in ajax request, do not load jquery.js/core scripts
<?php
class MyController extends Controller
{
// ...
public function actionAjaxAction()
{
// do something
$content = $this->renderPartial('viewFile', array(/*data*/), true, false);
Yii::app()->clientScript->renderBodyEnd($content);
echo $content;
}
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment