javascript - PhpStorm: write in PHP, HTML and JS in ctp file
572
Solution:
Do the following:
<?php $this->append('script');?>
<script type="text/javascript">
jQuery(document).ready(function() {
...
});
</script>
<?php $this->end();?>