#SpidocheScaler (version 1.2.3)
SpidocheScaler is a responsive DOM scaler
DEMO : http://spidoche.com/spidocheScaler/
This jQuery plugin is perfect to deal with complexe table on mobile when your client or your boss do not like table scroll overflow style ;)
With spidocheScaler you can resize your table without breaking the layout.
Of course you have to enable the zoom on mobile devices to keep a good user experiences.
Scale all the table of a page
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="spidocheScaler.js"></script>
<script>
jQuery(function($){
$('table').spidochescaler();
});
</script>
You can adjust the max-width of the DOM part you want to scale with the option 'maxWidth' (the default value is 800 px).
$('table').spidochescaler({maxWidth:500});
If for some reason you want to destroy (kill) spidocheScaler at a specific breakpoint, you can use the option 'destroyAt'.
$('table').spidochescaler({destroyAt:375});