Open jeronimo opened 10 years ago
return false; should be changed to e.preventDefault(); everywhere because it is impossible to bind other events on the same elements. i.e.
return false;
e.preventDefault();
$($this.buttons.next).click(function() { $this.goForward(); return false; });
To
$($this.buttons.next).click(function(e) { e.preventDefault(); $this.goForward(); });
return false;
should be changed toe.preventDefault();
everywhere because it is impossible to bind other events on the same elements. i.e.To