I'm having an issue where text in my div only appears on the second click, instead of the first. What could be causing this problem?
$('#fPaperCirclePic').on('click', function () {
$('#fPaperCircleText, #isargebla, #moq10k').css('visibility', 'visible');
$('#fPaperCircleText, #isargebla, #moq10k').fadeToggle("slow", "linear");
});