Duplicate content fix
-
Further to https://www.ads-software.com/support/topic/duplicate-content-36/, here is updated code that fixes the dupliate id issue and ignores elements without an id attribute.
This is based on version 2.0.0 of the plugin.if (settings.enable) { // Hide table. We might need it again! tableHTML.hide(); // Rename all the elements in the table to avoid duplicate ids // Based on https://www.ads-software.com/support/topic/duplicate-content-36/ if (tableHTML.attr('id') !== undefined) { tableHTML.attr('id','temp-'+tableHTML.attr('id')); } $('*', tableHTML).each(function() { if ($(this).attr('id') !== undefined) { $(this).attr('id','temp-'+$(this).attr('id')); } }); // Display responsive version after table. tableHTML.after(display); } else { $(".ml-responsive-table").remove(); // Restore the original ids if (tableHTML.attr('id') !== undefined) { tableHTML.attr('id',tableHTML.attr('id').replace('temp-')); } $('*', tableHTML).each(function() { var orig_id = $(this).attr('id'); if (orig_id !== undefined) { var new_id = orig_id.replace('temp-',''); $(this).attr('id',new_id); } }); // Show table tableHTML.show(); }
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Duplicate content fix’ is closed to new replies.