Hi
i have the following format :
<div id="container1">
<div id="post"> blah blah blah </div>
<div id="post"> blah blah blah </div>
<div id="post"> blah blah blah </div>
</div>
<div id="container2">
<div id="post"> blah blah blah </div>
<div id="post"> blah blah blah </div>
<div id="post"> blah blah blah </div>
</div>
I want a jQuery code to remove the last "post" DIV in the "container1" with a fading effect.
Important : the "container1" does not have a specified "post" DIVs number. so the code should just select the last "POST" div in the "container1" div.
Thanks