I am trying to achieve the following effect:
$titleSpan.css('visibility','visible');
$titleSpan.css('visibility','hidden');
With these lines of code, my text can either be visible or hidden.
However, I would like to adjust this so that the text's visibility is set at 50%. I have read about compatibility issues with IE and how it handles this differently. This leads me to wonder if there is a jQuery solution to accomplish this.
Is there a way to modify these CSS commands so that the first line sets the text as fully visible and the second line adjusts its opacity to 50%?