Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2014
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. $(window).trigger('scroll'); // init the value
  2. });
  3.  
  4. $(window).on('scroll', function(){
  5. var pos=$('#subHeadline').offset();
  6. $('.article-header').each(function(){
  7. if(pos.top >= $(this).offset().top && pos.top <= $(this).next().offset().top)
  8. {
  9. $('#subHeadline').html($(this).html());
  10. return;
  11. }
  12. });
  13. $('button').on('click', function () {
  14. $(this).text($(this).text() == '(-)' ? '(+)' : '(-)');
  15. $('.description' ).slideToggle('fast');
  16. });
  17. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement