I'm new to jQuery, so please forgive me if this is asinine. If so, please point me to a place where I can gain some knowledge.
Here's what I'm doing: I have a Wordpress (hence compatibility mode) layout that is a bunch of divs arranged using isotope. When a user clicks on a div, it expands out to a certain size using .animate() and then isotope sorts all of the divs by width.
This all runs beautiful and I'm very happy with it. The problem is I've got all forward and no reverse. I want to add a button that reverts the div to it's original state (width: 156px height: 191px). This is where my green status is really showing. I've tried just reverse engineering everything I've already done when a close link is clicked, but all I've been able to achieve is shrinking the div only to have it immediately shoot back to the expanded size.
If someone can point me in the right direction, I'd be forever in your debt. Also, if I can provide you with any more information just let me know and I'll get right on it. Thank you so much.
jQuery().ready(function() {
// Variables - Project Tiles
var $tile = jQuery(".tile");
//Expands tile on click
jQuery($tile).click(function(){
$tile
.stop()
jQuery(this).addClass('expanded'); //change cell's class
jQuery(".tile-content", this).hide(); //hide starting content
jQuery(this).animate({ //animate the expansion of the cell
width: '933px',
height: 'auto',
}, "slow", function() { //things to do after animation
jQuery(".expanded-content", this).fadeIn('slow'); //show post content
jQuery("#content").isotope({ //re-arrange tiles
sortBy : 'width',
});
});
});
// close tile
});