shaqman/yii2-inline-script

Use inline javascripts inside view normally.

1.0.1 2017-09-26 10:10 UTC

This package is auto-updated.

Last update: 2024-04-05 18:18:58 UTC


README

Use inline javascripts inside view normally.

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist shaqman/yii2-inline-script

or add

"shaqman/yii2-inline-script": "*"

Usage

In your view:

use shaqman\widgets\inlinescript\InlineScript

... view ...

<?php InlineScript::begin([
        'position' => View::POS_HEAD, // yii\web\view\registerJs parameter (optional)
        'key' => 'tmp-script' // yii\web\view\registerJs parameter (optional)
    ]);
?>

<script>

    $("#btn-submit").click(function () {
        alert('hi');
    });

</script>

<?php InlineScript::end(); ?>

... view ...