As the administrator of a PC clan's Enjin site (they insisted on using Enjin instead of Drupal), I have been enhancing it with JavaScript touches and features. After switching domains, we needed to update numerous links, so we opted to use JavaScript for this task. However, if someone visits the site without JavaScript enabled, most of the links will be broken. This prompted me to consider using the following code:
<noscript>
<style type="text/css">
.pagecontainer {display:none;}
</style>
<div class="noscriptmsg">
You don't have javascript enabled. Good luck with that.
</div>
</noscript>
Unfortunately, due to Enjin's limitations, I cannot access the <noscript> tag directly. The platform requires me to insert code into a module, which can be hidden or displayed in a small square on the page. This makes the previous code ineffective in conveying the intended message. I am now seeking alternative methods to achieve a similar effect without relying on the <noscript> tag.