I am using a plugin that has a noscript tag, which is an alternative for browsers that have javascipt disabled. -source
The code I am using in the action is:
$this->view->headLink()->appendStylesheet('/css/my.css');
However this just appends it as is, I would like the script to be within a <noscript></noscript>
tag.
The docs says:
appendStylesheet($href, $media, $conditionalStylesheet, $extras)
But I am still unsure how I would go about this?