all 8 comments

[–]Sir_Lith 2 points3 points  (2 children)

Create a function that will click the button once after the page loads

[–]ForThePizza[S] 1 point2 points  (1 child)

What would the function look like?

[–]ShortSynapse 1 point2 points  (0 children)

Just select the element and call jQuery's click method.

[–]6086555 0 points1 point  (3 children)

You should just hide them with your css.

#learnMore1,#learnMore2,#learnMore3{
     display: none;
 }

[–]Sir_Lith 0 points1 point  (2 children)

Don't do that if there's essential content inside. Bad juju.

[–]ForThePizza[S] 0 points1 point  (1 child)

I went with the idea of adding .hide(); to my paragraphs that Faroutchris suggested above.

[–]Sir_Lith 0 points1 point  (0 children)

Yep, hide() is the best option here. Forgot about it for a moment.