Advertisement
soyuka

Untitled

Sep 13th, 2013
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. <script>
  2. jQuery(function($) {
  3. $('.showNFO').on('click',function(e) {
  4. e.preventDefault();
  5. var id = '#nfo'+$(this).attr('data-id');
  6. $(id).toggle();
  7. });
  8.  
  9. $(window).load(function() {
  10. if($(window).width() < 740) {
  11.  
  12. $('.image-block').each(function(i, e) {
  13. var img = '<div style="text-align:center">'+$(e).html()+'</div><br><br>';
  14. var $table = $(e).closest('table');
  15.  
  16. $(e).remove();
  17.  
  18. $table.before(img);
  19. });
  20. }
  21. });
  22.  
  23. })
  24. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement