- Posts: 115
- Thank you received: 4
Ask the community, share ideas, and connect with other LimeSurvey users!
var groupIndex = $('div[id^="group-"]').attr('id').split('group-')[1];
$(document).ready(function(){ function redirectUser(){ window.location = "www.google.com"; } // Find the group index - var groupIndex = $('div[id^="group-"]').attr('id').split('group-')[1]; if(groupIndex == "") { } else { setTimeout('redirectUser()', 2000); } });
$(document).ready(function(){ var groupIndex = $('div[id^="group-"]').attr('id'); groupIndex = groupIndex ? groupIndex.split(' ').slice(-1)[0] : ''; if(groupIndex != 0) { } else { setTimeout('window.location = "https://www.google.com"', 2000); } });