I have this html
<div id="body" role="main">
<h1>Title</h1>
<p>My site is mysite.com</p></div>
I have <div id="body" role="main">
or <h1> and <p>
on every page.
I want to hide inner text of <h1>
and <p>
or "Title" and "My site is mysite.com" on specific URLs without effecting <div id="body" role="main">
or <h1> and <p>
on other pages.
Please help me to hide them with css or js?
Thanks