Hey guys i am trying to make a slide in slide out on menu list items.
And i am using transition to give an animation to css settings.
Now the point is how can i do something using jquery after the css has been applied.
i have written this code but it seems to work at the same time.
I want is that the #homeContainer width should be 0px and then the #galleryContainer width starts to increase.
thanks.
jQuery(document).ready(function($) {
$('#galleryListItem').click(function(){
$('#homeContainer').css('width','0px');
$('#galleryContainer').css('width','600px');
});});