"click to view" is supposed to slide out a section where I provide my own snarky comments
On your home page, go to the second post, and click...
You're javascript only slides things with the id sampleOuter. As you have multiple entries with the id sampleOuter on your homepage, most browsers will pick the first.
If you're intent is to slide open ALL of them, I'd use a class, rather than an ID.
If you're intent is to just slide open the one that's clicked on, you need each "sampleOuter" to have a unique identifier you can select it on. You can then pass that to your "toggleSampleView" method.
On your home page, go to the second post, and click...
You're javascript only slides things with the id sampleOuter. As you have multiple entries with the id sampleOuter on your homepage, most browsers will pick the first.
If you're intent is to slide open ALL of them, I'd use a class, rather than an ID.
If you're intent is to just slide open the one that's clicked on, you need each "sampleOuter" to have a unique identifier you can select it on. You can then pass that to your "toggleSampleView" method.
HTH.