Jump to content

Recommended Posts

I have a FAQ page and I really want them to be clickable links that hide and show the answer when you click the question.

 

http://86.7.138.3/RSCE/faq.html

 

Could someone point me in the direction of a script that will allow me to do that? Either JS or CSS would be great. I really have no-idea where to even start.

Link to comment
https://forums.phpfreaks.com/topic/188130-faq-hide-and-show-the-answers/
Share on other sites

Just so happens I wrote one of these this morning for work.

 

The jQuery....

 

$(document).ready(function() {
$('.answer').hide();									
$("a[name^='faq-']").each(function() {
	$(this).click(function() {
		if($("#"+this.name).is(':hidden')) {
			$("#"+this.name).fadeIn('slow');
		} else {
			$("#"+this.name).fadeOut('slow');
		}
	});
});
$('.answer').click(function() {
	$(this).fadeOut();
});
});

 

Markup example.

 

<ul class="faq">
  <li>
    <a href="#" name="faq-1">First question is?</a><br />
    <div class="answer" id="faq-1">
      <p>Answer to number one.</p>
    </div>
  </li>
  <li>
    <a href="#" name="faq-2">Second question is?</a><br />
    <div class="answer" id="faq-2">
      <p>Answer to number two.</p>
    </div>
  </li>
</ul>

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.