In the process of testing an application, I have a simple request. I want to hide a specific div and only reveal it in the browser when a certain extension is included in the URL. Here's an example:
<div ng-hide="true" class="cookie-banner">
Warning you about cookies
</div>
To make the hidden div visible, I would like to add ?show=cookie-banner to the url. For instance, a local site such as ../webapp/#/subscribed would not display the hidden div, but ../webapp/#/subscribed?show=cookie-banner would. I'm unsure what step I may be missing to achieve this functionality. Any assistance would be greatly appreciated!