34k+
News
Guide
API
Wiki
Forum
Community
Places
Members
Hall of Fame
Badges
More
Learn
Books
Resources
Develop
Download Yii
Extensions
Report an Issue
Report a Security Issue
Contribute to Yii
Donate
About
Release Cycle
License
Team
Official Logos and Design
Login
embedded javascript block in your view with IDE checking or intellisense
Comparing
#1
with
#2
Content
this is my way for embed js code block in view file:
~~~
```php
<?php \year\widgets\JsBlock::begin() ?>
<script >
[...]
</script>
<?php \year\widgets\JsBlock::end()?>
~~~
```
and my extension for it:
[...]