Drupal expand teaser to full body

We had the need to expand the teaser to full node body on click.

We created a view with both teaser and body, then we swap them with a bit of jQuery in the footer of the view: 

<script type="text/javascript">
if (Drupal.jsEnabled) {
  $(document).ready(function() {
    $('#campaign_overview').find('div.views-field-body').hide();
    //$('#campaign_overview').find('img').hide(); // can hide images in teaser, but we want them after all
    $('#toggle_teaser').click(function() {
      $('#campaign_overview').find('div.views-field-teaser').slideToggle('fast');
      $('#campaign_overview').find('div.views-field-body').slideToggle('fast');
      //$('#campaign_overview').find('img').slideToggle('fast');
      if ($('#toggle_teaser').html()=='<a href="#">[+] read more</a>') {
        $('#toggle_teaser').html('<a href="#">[-] read less</a>');
      }
      else {
        $('#toggle_teaser').html('<a href="#">[+] read more</a>');
      }
      return false;
    }); // $('#toggle_teaser').click(function()
  }) // end $(document).ready(function()
} //end if (Drupal.jsEnabled)
</script>

<div id="toggle_teaser"><a href="#">[+] read more</a></div>

Comments

thanks for the code, is

thanks for the code, is great!
Poker Gratis

Pretty good code thanks for

Pretty good code thanks for share your knowledge.
agrandarmiento de pene

Live-You.com (http://www.live-you.com): This is the portal for y

Live-You.com (http://www.live-you.com): This is the portal for your research, your work, your free-time. Live-you has got it all! Social network, dating, Chat, video chat, Messenger, mail, virtual reality in 3D, organiser, job searching, e-book, weather, Horospoces, prize winning competition, games, news. Anything to suit your mood! Club (http://club.live-you.com): Live-you Social network is completely free. Puts you in contact with others. Make Friends! Post your albums and share videos, music and hobbies. Chat and video-chat. All free! Meeting (http://meeting.live-you.com): To find your soul mate. Free registration. Chat, chat-rooms, Video-Chat, Messenger, advance research, mail and blog. Tools designed to help you find Mr and Mrs Right in total safeness! 3Dcity (http://3dcity.live-you.com): Live your virtual reality in your town, in 3Dcity!. Music will blow your mind in the club. You will make new friends just by waliking in the street of your city or stepping into your favourite bar. It is just great! EasyIncontri (http://live-you.easyincontri.com): Dating Service with chat and webcam. Reliable online datiog. Free registration. You choose the type: love or flirt, serious or sexy. Chat, Video-Chat, Messenger, advance research, mail. Over 14.000.000 of members in the world!

Should see this before, i was

Should see this before, i was trying another code and make more damage than benefits, but hope this one helps me.

Thank you.

pene grande

Might i interject that drupal

Might i interject that drupal and dating are intertwined, in that when you go to a full body dating love drupal site, you really need to see a dating london teaser.

Post new comment

The content of this field is kept private and will not be shown publicly.
  • Web page addresses and e-mail addresses turn into links automatically.
  • Allowed HTML tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd> <img>
  • Lines and paragraphs break automatically.

More information about formatting options

CAPTCHA
This question is for testing whether you are a human visitor and to prevent automated spam submissions.