Posts

Showing posts from July, 2015

How to use jQuery to switch between a plus and minus sign on collapse and expand?

1. Add Jquery script ignore if already added <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.0/jquery.min.js"></script> 2. Add Javascript to show hide  <script type="text/javascript">            $(".question").click(function () {             if ($(this).next(".answer").is(":hidden")) {                 $(this).next(".answer").slideDown("slow");                 $(this).children('span').text('-');             } else {                 $(this).next(".answer").slideUp("slow");                 $(this)...