I wish to accomplish a fairly simple task (I hope!)
I got two div tags and one anchor tags, like this:
forgot p
I used this way to do that for multiple blocks without conjuring new JavaScript code:
Show/Hide Content
Then a JavaScript portion for all such cases:
$(function() {
$('*[data-toggle]').click(function() {
$('#'+$(this).attr('data-toggle')).toggle();
return false;
});
});