[css-d] display:none on android browser will prevent click event?

2013-12-04 Thread chun zhang
!DOCTYPE html html head script src= http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js; /script script $(document).ready(function(){ $(p).click(function(){ $(#test).click(); }); }); /script /head body pIf you click on me, I will disappear./p pClick me away!/p pClick me too!/p

Re: [css-d] display:none on android browser will prevent click event?

2013-12-04 Thread Chris Rockwell
I need to know more about your use case to give the best advice but initially, you may want to consider the implications of using display:none on the element - it will be an accessibility issue (although less so if this is strictly a mobile app). That being said, this seems like a case where

[css-d] Chrome screencast and emulation

2013-12-04 Thread Chris Rockwell
The timing couldn't complement Karl's email any better - Chrome now has hassle free debugging for android devices: http://www.html5rocks.com/en/tutorials/developertools/mobile/ -- Chris Rockwell __ css-discuss

Re: [css-d] display:none on android browser will prevent click event?

2013-12-04 Thread MiB
dec 4 2013 16.17 Chris Rockwell: That being said, this seems like a case where you'd want to use something like 'visibility:hidden' or 'hidden' or http://snook.ca/archives/html_and_css/hiding-content-for-accessibility. That should make it accessible and it works on an android browser (stock

[css-d] CSS Progress Bar Help

2013-12-04 Thread SSC_perl
Hello, I'm new to CSS here, so forgive me if this is a basic question. I just added a CSS progress bar to our open source shopping cart, SurfShopPRO. It looks nicer than the graphics we were using before, but it could be better. One of the things I need help with is that the

Re: [css-d] CSS Progress Bar Help

2013-12-04 Thread JAY TANNA
I suggest enter this style: .progbox {padding-left: 0; margin: 0 auto;} Good luck. Hello, I'm new to CSS here, so forgive me if this is a basic question. I just added a CSS progress bar to our open source shopping cart, SurfShopPRO. It looks nicer than the graphics we were using before,

Re: [css-d] CSS Media Queries: a singularity with orientation modes

2013-12-04 Thread Alan Gresley
On 1/12/2013 8:12 AM, David Hucklesby wrote: On 11/30/13, 11:55 AM, Bjoern Hoehrmann wrote: * Gabriele Romanato wrote: @media screen and (orientation: landscape ) { /* ... */ } As far as I know, browsers - even desktop browsers - support the DeviceOrientation event plus a series of APIs