I need to drag an image that is currently under another png image.
I thought I could do this easily by using this code:
$(document).ready(function() {
$(".imageOverlay").mousedown(function(eventObject){
$('#draggable').drag();
return false;
});
});
However it doesn't seem to work.
You can find an example without the overlying image here
And here is the example with the overlying image here
Any help would be great, please keep your answers relatively simple as I am no guru in jQuery.
Thank you.