Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. $(document).ready(
  2. function(){
  3. $("a[class*='data']")..click(
  4. function(){
  5. $(this).parent().find('div').slideToggle('slow');
  6. }
  7. ).toggle(
  8. function() {
  9. $(this).text('schowaj');
  10. }, function() {
  11. $(this).text("więcej");
  12. }
  13. );
  14. }
  15. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement