Sequencing 2 lines of JQUERY
- by nobosh
I have the following lines of JQUERY:
// When dragging ends
stop: function(event, ui) {
// Replace the placeholder with the original
$placeholder.after( $this.show() ).remove();
// Run a custom stop function specitifed in the settings
settings.stop.apply(this);
},
I don't want settings.stop.apply(this); to run UNTIL the line…