I have an element that is refusing to fade out or in (other elements work). When I run the jquery fadeOut() in the console it instantly dissapears from the screen??
Here is the html for the element:
<div class="span12">
<h1 id="pagetitle" class="sitetitle lighttextbackground">
<a href="asdsf.html">Alexandre</a>
</h1>
</div>
jquery:
$("#pagetitle").fadeOut(1250);
The whole site with css / js files etc can be seen here.
http://staging.alexandredairy.com/
I've debugged, cut and pasted the code in jsfiddle and I can't find the culprit so any help would be appreciated.
Thank You