Answer the question
In order to leave comments, you need to log in
Yii2 how to add javascript to id, type?
Yii2 how to add javascript id, type ?
You need to add javascript to id="some-template" and type="text/x-handlebars-template"
TO THE CODE PAGE
Sample code:
<script id="template" type="text/x-handlebars-template">
Имя: {{name}}
</script>
//...
$script = <<< JS
// code
JS;
$this->registerJs($script, yii\web\View::POS_END);
//...
class TmpAppAsset extends AssetBundle{
public $js = [
'js/file.js',
];
public $jsOptions = [
'position' => \yii\web\View::POS_HEAD,
'id' => 'template'
'type' => 'text/x-handlebars-template',
];
}
Answer the question
In order to leave comments, you need to log in
Html::script($scriptContent,['id'=>'your-id','type'=>'your-type']);
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question