Guest User

Untitled

a guest
Jun 21st, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. $(document).ready(function() {
  2. $('.toggleMeta').click(function() {
  3. var $postMeta = $(this).prev().find('div.post-meta');
  4. if($postMeta.is(":visible")) {
  5. $postMeta.fadeOut(500);
  6. $postMeta.css("backgroundImage", "url(images/plus.png)"); }
  7. else {
  8. $postMeta.fadeIn(500);
  9. $postMeta.css("backgroundImage", "url(images/minus.png)"); }
  10. });
  11. });
Add Comment
Please, Sign In to add comment