Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. $(document).ready(function(){
  2. $('li').each(function() {
  3. $(this).on('shown', function () {
  4. $(this).children().attr("src", "http://test.cz.vs1056.server4u.cz/images/right.jpg");
  5. });
  6.  
  7. $(this).on('hidden', function () {
  8. $(this).children().attr("src", "http://test.cz.vs1056.server4u.cz/images/down.jpg");;
  9. });
  10. });
  11. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement