Re: [css-d] Drop Menu failing on most Mobile Phones

2014-12-13 Thread Robert A. Rosenberg
At 20:02 -0600 on 11/28/2014, Karl DeSaulniers wrote about Re: [css-d] Drop Menu failing on most Mobile Phones: Yes. jQuery can make this work. Note that jQuery IS JS (under the covers) so the query of if JS is the only method that will work is answered since use of jQuery implies use

Re: [css-d] Drop Menu failing on most Mobile Phones

2014-11-30 Thread Crest Christopher
Karl you are somewhat correct, I was informed to use this jQuery code; 1. script 2.$(html).toggleClass(touch, 'ontouchstart' in document.documentElement ) 3.$(function(){ 4. $(.x).on(touchstart, function(){ $(this).toggleClass(active) }) 5.// would be all the jQuery

Re: [css-d] Drop Menu failing on most Mobile Phones

2014-11-30 Thread Karl DeSaulniers
Hi Crest, It's not good to keep posting off topic things here. just fyi. The first script is the one you want to use. Best, Karl DeSaulniers Design Drumm http://designdrumm.com On Nov 30, 2014, at 9:34 AM, Crest Christopher crestchristop...@gmail.com wrote: Karl you are somewhat correct,

Re: [css-d] Drop Menu failing on most Mobile Phones

2014-11-29 Thread Karl DeSaulniers
It actually does collapse on an iPhone. When you click the green nav button it slides down and when you take focus off of it, it then slides back up. I had clicked the nav and immediately went to edit your CSS. Clicked in that box for the CSS and the nav slid up like it was supposed to. So

Re: [css-d] Drop Menu failing on most Mobile Phones

2014-11-29 Thread Karl DeSaulniers
I think what the culprit here is that the code to expand and collapse is set to the :hover. Touch screens don't hover. they click, so the touch screens may be executing the hover because the button has to be hovered to click, but there is not a mouse per se to take the hover away. Looks like

[css-d] Drop Menu failing on most Mobile Phones

2014-11-28 Thread Crest Christopher
Hi, the following effect http://cssdeck.com/labs/navigation-dropdown-with-flip-effect is not collapsing on iPhone and it's not opening or collapsing on WP8.x. I can't say whether it works on Android as I didn't test on Android ? Christopher

Re: [css-d] Drop Menu failing on most Mobile Phones

2014-11-28 Thread David Laakso
On Fri, Nov 28, 2014 at 10:58 AM, Crest Christopher crestchristop...@gmail.com wrote: Hi, the following effect http://cssdeck.com/labs/navigation-dropdown-with-flip-effect is not collapsing on iPhone and it's not opening or collapsing on WP8.x. I can't say whether it works on Android as I

Re: [css-d] Drop Menu failing on most Mobile Phones

2014-11-28 Thread Crest Christopher
Thanks David, the example you provided doesn't have the nice collapse effect ! Do you think jQuery could iron out any quirks that this menu has, or strictly JS will only work ? Christopher David Laakso mailto:laakso.davi...@gmail.com Friday, November 28, 2014 2:20 PM On Fri, Nov 28, 2014 at

Re: [css-d] Drop Menu failing on most Mobile Phones

2014-11-28 Thread Karl DeSaulniers
Yes. jQuery can make this work. Best, Karl DeSaulniers Design Drumm http://designdrumm.com On Nov 28, 2014, at 2:13 PM, Crest Christopher crestchristop...@gmail.com wrote: Thanks David, the example you provided doesn't have the nice collapse effect ! Do you think jQuery could iron out