I have an ajax call:
$.get( "include/go.php?do", { action: "get_submodels_by_model" } )
.done(function( data ) {alert(data);});
The response is still in proccess when I get the alert back.
I need to delay it for a couple of seconds.
Is this possible?