tinkers / yii2-js-block
A simple Js Block extension
Package info
github.com/sagarguhe/yii2-js-block-extension
Type:yii2-extension
pkg:composer/tinkers/yii2-js-block
1.0.2
2020-10-19 09:30 UTC
Requires
- yiisoft/yii2: ~2.0.0
This package is not auto-updated.
Last update: 2026-03-04 09:11:48 UTC
README
A simple Js Block extension
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist tinkers/yii2-js-block "*"
or add
"tinkers/yii2-js-block": "*"
to the require section of your composer.json file.
Usage
Once the extension is installed, simply use it in your code by :
<?php \tinkers\widgets\JsBlock::begin() ?> <script> $(function(){ jQuery(".company_introduce").slide({mainCell:".bd ul",effect:"left",autoPlay:true,mouseOverStop:true}); }); </script> <?php \tinkers\widgets\JsBlock::end()?>