coding... ;)
On Oct 5, 8:12 pm, Tom Krones <
tkro...@gmail.com> wrote:
> With the code below, when scrolling on a touch screen, if your swipe starts
> by landing on an element with the fastClick event the event fires even
> though you were just trying to scroll the page...
>
> Any ideas?
>
>
>
> On Tue, Oct 5, 2010 at 9:58 AM, Tom Krones <
tkro...@gmail.com> wrote:
> > So you're saying do something like this?
>
> > fastClick: function (fn) {
> > return this.each(function (el) {
> > xui(this).touchend(function (e) {
> > fn();
> > e.preventDefault();
> > });
> > });
> > }
>
> > That's much simpler and works well but how do I get the highlight feature?
>
> > Thanks,
> > Tom
>