- Posts: 10269
- Thank you received: 3648
Ask the community, share ideas, and connect with other LimeSurvey users!
function checkSize(){ if ( $(window).width()<800 ) { $('.control-label').width('100%').css('text-align','left'); $('.slider-container').width('100%').css('float','none').css('margin-top','0').css('margin-bottom','0'); } else { $('.control-label').width('16%').css('text-align','right'); $('.slider-container').width('83%').css('float','right').css('margin-top','0').css('margin-bottom','0'); } } $(document).ready(function() { checkSize(); $(window).resize(checkSize); ....(etc)
732 defaultOptions: { 733 id: "", 744 min: 0, 745 max: 10, 746 step: 1, 747 precision: 0, 748 orientation: 'horizontal', 749 value: 5, 750 range: false, 751 selection: 'before',