I am testing and app and would like to do something very simple. I would like to hide a div and only show it in the browser when an extension is added to the url. For example:
<div ng-hide="true" class="cookie-banner">
Warning you about cookies
</div>
I would see the hidden div by adding--> ?show=cookie-banner to the url, so local site like: ../webapp/#/subscribed would not show the hidden div but ../webapp/#/subscribed?show=cookie-banner this would. I am not sure what I am miising to make this work. Help Please!