Guest User

Untitled

a guest
Jun 21st, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. $(document).ready(function() {
  2. $('div.toggleMeta').each(function() {
  3. $(this).click(function() {
  4. $(this).parent.find('div.post-meta').toggle();
  5. });
  6. });
  7. });
  8.  
  9.  
  10. <div class="post-content">
  11.  
  12. <div class="toggleMeta"></div>
  13. <div class="post-meta"></div>
  14.  
  15. </div>
Add Comment
Please, Sign In to add comment