I'm building a drag and drop type quiz, where you drop answers into the corresponding columns from a pool of answers.
There is a limited amount of answers you can put inside each column.
I have it working, for the most part. However, the way the tool is written, each answer slot can only have one correct answer, where i'd like there to be multiple correct answers.
For example: http://jsfiddle.net/Hr465/
In the first column, the correct answers are "Challenge the status quo" and "Take Risks". However, reverse the order, "Take Risks" being on top of "Challenge the status quo", and the answer comes out incorrect.
The problem comes down to this line of the validation function
if($('#mover'+x).parent().attr('id') == "takercontent"+x){
essentially I'd like to rewrite this with an &&. So first column #mover1 && #mover2, second column etc. etc.