Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <script>
- jQuery(function($) {
- $('.showNFO').on('click',function(e) {
- e.preventDefault();
- var id = '#nfo'+$(this).attr('data-id');
- $(id).toggle();
- });
- $(window).load(function() {
- if($(window).width() < 740) {
- $('.image-block').each(function(i, e) {
- var img = '<div style="text-align:center">'+$(e).html()+'</div><br><br>';
- var $table = $(e).closest('table');
- $(e).remove();
- $table.before(img);
- });
- }
- });
- })
- </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement