Advertisement
Guest User

Untitled

a guest
Oct 17th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.50 KB | None | 0 0
  1. <section class="expandable-onClick">
  2.     <div class="element">
  3.         <h2>tytul</h2>
  4.     </div>
  5.     <p class="excerpt">excerpt</p>
  6. </section>
  7.  
  8.  
  9. <iframe class="thebox"></iframe>
  10.  
  11.  
  12. $( ".expandable-onClick .element" ).click(function() {
  13.     var urlTitle = $( this ).children('h2').text();
  14.     var url ="partials/main/" + urlTitle + ".html";
  15.     $( this ).parent().toggleClass("expanded");
  16.     $( this ).parent().append($('<iframe class="thebox"></iframe>'));
  17.     $('.thebox').attr( "src", encodeURIComponent( url ));
  18.  
  19. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement