I am new to jQuery and have created a tab, which slides out when clicked. I would like to add an image to let the user know the tab can be clicked to hide it.
I currently have this jsfiddle here http://jsfiddle.net/KcF4u/1/
My current code is
$('.box, aside h2').delay(2000);
$('.box').animate({ right:"-12"});
$('aside h2').animate({ right:"270"});
$("aside h2").toggle(function(){
$('.box').animate({ right:"-335"});
$('aside h2').animate({ right:"-55"});
},function(){
$('.box').animate({ right:"-12"});
$('aside h2').animate({ right:"270"});
});
I have included an image of the cross, but would only like the image visible when the tab is fully expanded.
Any ideas how this can be done?
I also feel my current code is a bit bloated, I would be very grateful if you can let me know how to simplify this also.
Thanks in advance