Consider an application that has classes 'app-header' and 'app-body'. In the body of the app, I'm using an iframe tag that displays another webpage which makes uses of the same 'app-header' class that my app uses. Need to disable the 'app-header' and just show the body of the page embedded inside my app. Also disabling the app-header doesn't disable my app's header.
A brief overview of my code.
My plans is to add the display:none property to the app-header css for the web page embedded inside my app. The problem is how to add css for an element alone (in my case - 'display:none' applies to iframe tag alone). Also I'm planning to use javascript and strictly no PHP.