View Single Post
Old 07-12-2012, 04:30 PM   PM User | #2
sunfighter
Senior Coder

 
Join Date: Jan 2011
Location: Missouri
Posts: 2,387
Thanks: 18
Thanked 350 Times in 349 Posts
sunfighter is on a distinguished road
Try this for the jquery:
Code:
<script type="text/javascript">
$(document).ready(function() {
	$("#portfolio").click(function(){
		if ($("#imagecarousel").css("display") == "none"){
			$("#imagecarousel").fadeIn("slow");
		}else{
			$("#imagecarousel").hide();
		}
	});
});
</script>
sunfighter is offline   Reply With Quote