hi
can someone more enlightened than myself work out why this won't work?
Code:
$("h2.portfolio-title").click(function() {
$('#portfolio').toggle("slow");
$(this).replaceWith("<h2 class='portfolio-title1' >" + $(this).text() + "</div>");
});
$("h2.portfolio-title1").click(function() {
$('#portfolio').hide("slow");
$(this).replaceWith("<h2 class='portfolio-title' >" + $(this).text() + "</div>");
});
essentially. I click the H2 with a class of "portfolio-title", and the #portfolio DIV scrolls nicely in to place, and I replace the class "portfolio-title" with "portfolio-title1".
This is reflected in the source, so the first part is definitely working - I am able to toggle a DIV on a click and replace its class with another.
I would then like to be able to click the header again, and hide the DIV and replace the class so the user is able to show/hide a div at will.
Toggle on its own works fine, but I would like to apply a different class to the "shown" header so the user is aware that they have clicked it.
What's wrong?
thanks.