网站没有在苹果设备上工作

I have recently worked on a small project. it's working fine on windows,android & other phones. but not working correctly with apple devices(iphone ipad). i have tested it on iphone4s,5 & ipad (os7). below are the few issues:

  1. some times images not loading(i have used php to view images).
  2. return back to home page link not working i m using java script on anchor tag().
  3. problem with login system(javascript function fired on click it shows security popup) some times it doesn't load security box or if it loads, unable to verify code.

find Screen Shots here http://blackspidercreations.com/apple/screen.docx

so but the mistake that i have did, i have tested site on many apple simulators like browerstack ipadpreview etc. they all workin fine. please help me.

Link to project: blackspidercreations.com/cs

Thanks in advanced.

Though I cannot answer points 2 or 3 without seeing the code, I had similar image problems once when developing for the iPhone. Make sure that the images are an appropriate size for the display. If the images are too large, the iPhone will not display them at all.

Hard to take a guess at the images issue without seeing the code.

Apple mobile devices don't actually a fire a click event when you interact with the web page. So if you are using jquery to do .click events, that is why it's not working. There is a relatively easy work around though, switch all your .click events to the following.

$(document).on("click touchstart", "#thing", function() { });