Please help us help you and fill where relevant:
Your LimeSurvey version: 2.72
Own server or LimeSurvey hosting: Own
Survey theme/template: Default
==================
Hi there people, first, thanks for the help, what i need is to make an autocomplete when you write on a question, i be able to do it on a multiple short text, but i want to do the same on an array text question like this.
I have tried to do it putting this script in the question title, which works for me with several short texts question, can someone help me to make this work? Thank you very much.
The code that i use is this (i put just 2 examples of autocomplete on this code).
<script type="text/javascript" charset="utf-8">
$(document).ready(function() {
var q1ID = '23567';
var states = "C Industria manufacturera/10 Industria de la alimentación/101 Procesado y conservación de carne y elaboración de productos cárnicos".split('/');
$('#question'+q1ID+' input.text').autocomplete({
source: states
});
});
</script>