I've written a fairly stright forward jQuery modal as I didn't want anything to heavy. The modal works fine on all browsers apart from the iPad.
If I am at the bottom of the page and click to open the lightbox it will open at the top of the page out of view.
I'm not using jQuery to position the window just pure css can anyone see why this would work in all other browsers apart from the iPad?
#lightbox { position:fixed; /* keeps the lightbox window in the current viewport */ top:0; left:0; width:100%; height:100%; z-index: 2; background-color: rgba(0, 0, 0, 0.2); font-weight: 100; margin: 0 0 .1em 0; color: #f8ef71; text-shadow: 1px 1px 1px #af7913; text-align: center; }