We are using Quicksand ( the sortable filterbale quicksand plugin )
Anyhoo..
Apart from the normal filters, to initiate the quicksand animation. We also can display the individual < li > 's by using a sweet little Layout Switcher.
The code of which is:
<!-- layout switcher -->
<div id="layoutSwitcher">
<a id="buttonsend" class="notsosmall pink button">More Info</a>
</div>
<!-- /end layout switcher -->
But my issue is If active I want to display Less Info.
In normal state to show More Info.
I am positive we can do this using jQuery
The jQuery to control the switcher is:
jQuery('#layoutSwitcher a').myPortfolioLayoutSwitcher({
show_switcher: true,
full_width_layout: false
});
So my question is simply.. can we change button text onclick to display less info or more info as necessary.
my