winman.js 640 B

12345678910111213141516171819202122232425262728
  1. $(document).ready(function() {
  2. var showText = '▼';
  3. var hideText = '▲';
  4. var is_visible = false;
  5. $('.toggleWMAN').prev().append(' <a href="#" class="toggleLinkWMAN">' + hideText + '</a>');
  6. $('.toggleWMAN').show();
  7. $('a.toggleLinkWMAN').click(function() {
  8. is_visible = !is_visible;
  9. if ($(this).text() == showText) {
  10. $(this).text(hideText);
  11. $(this).parent().next('.toggleWMAN').slideDown('slow');
  12. }
  13. else {
  14. $(this).text(showText);
  15. $(this).parent().next('.toggleWMAN').slideUp('slow');
  16. }
  17. return false;
  18. });
  19. });