I need to change a background image of a parent div (content-indent) when child div (ezblog-head) is present. I've found lots of answers on the web. But I can't seem to get any of them to work.
The actual index.php page looks like this: (The site is built with Joomla)
<div class="content-indent">
<jdoc:include type="component" />
</div>
That loads in the browser as:
<div class="content-indent">
<!-- bunch of other stuff -->
<div id="ezblog-head>
<!-- more stuff -->
</div>
</div>
Here's the Javascript I'm using on my index page (It's not working)
<script type="text/javascript">
if ($('#ezblog-head')[0]){
<style>
.content-indent {background: #0f0;}
</style>
}
</script>`
I have also tried this (to no avail):
<script type="text/javascript">
if (document.getElementById("ezblog-head")) {
document.getElementByClass('content-indent').style.background ='#0f0'
}
</script>
Any help would be hugely appreciated. Thanks!
