specific draggable is above a specific droppable
- by hopes
Hi everyone,
I am a begginer in JQuery and I want to make a simple matching quiz
so I used this code to create the qustions div and answers div
The Capital of KSA
The Capital of UK
The Capital of USA
Riyadh
London
Washington
I want to know after submit button is clicked if all accepted draggables are now dragged to the suitable droppables
I used this code to make the answers divs draggable and to make them accepted for their questions divs
$(function() {
$("#a3").draggable();
$("#q3").droppable({
accept: '#a3', });
});
your help will be appreciated :)