I created a question that has a simple piece of code in to autofill while a user is typing an answer.
Code:
Choose your Top Doctors - Select up to three (3) per specialty<script type="text/javascript" charset="utf-8">
$(document).ready(function() {
var qID = 168;
$('#question'+qID+' input[type="text"]').autocomplete({
minLength: 2, // This line is optional, signifies number of keystrokes before autocomplete is initiated
source: [
"a doctor","b doctor","c doctor","etc"
]
});
});
</script>
When I go to save the question it gets cut off right in the middle of the code.
Now to be clear - there are around 10,000 names in that list. I read somewhere the question cannot be too long, so I am thinking there is an expression manager problem, but how do I find a problem in a csv that is 10,000 columns?
Any ideas would be greatly appreciated.
I am attaching a text file with the question in it, in case you want to see the whole thing
Thank you