CSS discuss often reminds me of my doctor, to whom I'll often go with
queries about an acute injury and come away with advice to stop smoking –
wise & well-intentioned, but somewhat short of the assumed benefits in
seeking expert advice for a specific problem.

Bob, your problem is down to Javascript's interference with native touch
event lifecycle. On line 19 of app.js:

/* Hover Touch */
$(document).ready(function() {
  $('.hover').bind('touchstart', function(e) {
    e.preventDefault();
    $(this).toggleClass('cs-hover');
  });
});

This code prevents touch events from resolving on `.hover` panels. Remove
the `e.preventDefault()` invocation on line 22 and the links are functional.

Regards,
Barney Carroll

barney.carr...@gmail.com
+44 7429 177278

barneycarroll.com

On 6 October 2014 09:44, Philip Taylor <p.tay...@rhul.ac.uk> wrote:

>
>
> Bob Schwartz wrote:
>
>  I’m going slightly mad.
>>
>> On a site: http://www.dlp-distribution.fr
>>
>
> http://validator.w3.org/check?uri=http://www.dlp-distribution.fr/
>
> ______________________________________________________________________
> css-discuss [css-d@lists.css-discuss.org]
> http://www.css-discuss.org/mailman/listinfo/css-d
> List wiki/FAQ -- http://css-discuss.incutio.com/
> List policies -- http://css-discuss.org/policies.html
> Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
>
______________________________________________________________________
css-discuss [css-d@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to