Need to run helloWorld() after execution of dragTrack() function. But helloWorld is not being called after dragTrack.
dragTrack(function(){
helloWorld();
});
function dragTrack() {
alert('first');
}
function helloWorld() {
alert('second');
}