Skip to content

Instantly share code, notes, and snippets.

@tektoh
Created November 11, 2014 05:46
Show Gist options
  • Save tektoh/dab2e3a60c75e8f5c7a2 to your computer and use it in GitHub Desktop.
Save tektoh/dab2e3a60c75e8f5c7a2 to your computer and use it in GitHub Desktop.
CakePHP2 インラインJavaScript
<?= $this->Html->script('jquery') ?>
<?= $this->fetch('script'); ?>
<?php
$this->Html->scriptStart(['inline' => false]);
$script = <<<EOT
$(document).ready(function() {
// ...
});
EOT;
echo $script;
$this->Html->scriptEnd();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment